diff options
Diffstat (limited to 'bench/ffi/noop.c')
-rw-r--r-- | bench/ffi/noop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bench/ffi/noop.c b/bench/ffi/noop.c index 6b93beeaf..de15eb5e0 100644 --- a/bench/ffi/noop.c +++ b/bench/ffi/noop.c @@ -1,5 +1,5 @@ -// clang -O3 -shared -undefined dynamic_lookup ./noop.c -o noop.dylib +// clang -O3 -shared -mtune=native ./noop.c -o noop.dylib -int noop(); +void noop(); -int noop() { return 1; }
\ No newline at end of file +void noop() {}
\ No newline at end of file |