aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/general/cb.deqz.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/mppa/general/cb.deqz.c')
-rw-r--r--test/mppa/general/cb.deqz.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/test/mppa/general/cb.deqz.c b/test/mppa/general/cb.deqz.c
index c4f639fd..c56733f0 100644
--- a/test/mppa/general/cb.deqz.c
+++ b/test/mppa/general/cb.deqz.c
@@ -1,9 +1,10 @@
-#define TYPE long long
+#include "framework.h"
-int main(void){
- TYPE a = 6;
- TYPE b = -4;
- if (0 != a)
- return 42;
- return 0;
+BEGIN_TEST(long long)
+{
+ if (0 != (a & 0x1LL))
+ c = 1;
+ else
+ c = 0;
}
+END_TEST()