Add a proptest for the JIT backend.

This commit is contained in:
2023-04-13 21:04:43 -07:00
parent 00af4a5f05
commit d455ee87b5
7 changed files with 92 additions and 11 deletions

View File

@@ -1,12 +1,12 @@
#include <stdint.h>
#include <stdio.h>
void print(char *variable_name, uint64_t value) {
void print(char *_ignore, char *variable_name, uint64_t value) {
printf("%s = %llii64\n", variable_name, value);
}
void caller() {
print("x", 4);
print(NULL, "x", 4);
}
extern void gogogo();