mirror of
https://github.com/GaloisInc/macaw.git
synced 2024-12-02 10:54:04 +03:00
15 lines
263 B
C
15 lines
263 B
C
/*
|
|
|
|
This is a small file designed to create a minimal test of the symbolic simulator.
|
|
|
|
It can be compiled with:
|
|
|
|
clang -o test_add.o -O2 -c -momit-leaf-frame-pointer test_add.c
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
uint64_t add(uint64_t x, uint64_t y) {
|
|
return x + y;
|
|
}
|