From bcfcbcb78d5aae904cac23d3e0a055c4d8cc8509 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Tue, 19 Mar 2019 07:23:15 +0100 Subject: test for madd --- test/monniaux/madd/madd_run.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/monniaux/madd/madd_run.c diff --git a/test/monniaux/madd/madd_run.c b/test/monniaux/madd/madd_run.c new file mode 100644 index 00000000..d4238c53 --- /dev/null +++ b/test/monniaux/madd/madd_run.c @@ -0,0 +1,9 @@ +#include + +extern unsigned madd(unsigned a, unsigned b, unsigned c); + +int main() { + unsigned a = 7, b = 3, c = 4; + printf("res = %u\n", madd(a, b, c)); + return 0; +} -- cgit