aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/madd/madd.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/monniaux/madd/madd.c')
-rw-r--r--test/monniaux/madd/madd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/monniaux/madd/madd.c b/test/monniaux/madd/madd.c
index e1e5eeb7..f847edf3 100644
--- a/test/monniaux/madd/madd.c
+++ b/test/monniaux/madd/madd.c
@@ -2,6 +2,10 @@ unsigned madd(unsigned a, unsigned b, unsigned c) {
return a + b*c;
}
+unsigned maddimm(unsigned a, unsigned b) {
+ return a + b*17113;
+}
+
unsigned madd2(unsigned a, unsigned b, unsigned c) {
return c + b*a;
}