aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/instr/ui64.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/mppa/instr/ui64.c')
-rw-r--r--test/mppa/instr/ui64.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/mppa/instr/ui64.c b/test/mppa/instr/ui64.c
new file mode 100644
index 00000000..908dec3c
--- /dev/null
+++ b/test/mppa/instr/ui64.c
@@ -0,0 +1,10 @@
+#include "framework.h"
+
+BEGIN_TEST(unsigned long long)
+{
+ c = (a > b);
+ c += (a <= b);
+ c += (a < b);
+ c += ((a & 0x1ULL) != (b & 0x1ULL));
+}
+END_TEST64()