aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/general/compd.eq.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/mppa/general/compd.eq.c')
-rw-r--r--test/mppa/general/compd.eq.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/mppa/general/compd.eq.c b/test/mppa/general/compd.eq.c
index 9b3e3a0d..d19a4d20 100644
--- a/test/mppa/general/compd.eq.c
+++ b/test/mppa/general/compd.eq.c
@@ -1,4 +1,7 @@
-int main(void){
- long long a = 5, b = -2;
- return (a == b);
+#include "framework.h"
+
+BEGIN_TEST(long long)
+{
+ c = ((a & 0x1LL) == (b & 0x1LL));
}
+END_TEST()