aboutsummaryrefslogtreecommitdiffstats
path: root/test/kvx/instr/ui32.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/kvx/instr/ui32.c')
-rw-r--r--test/kvx/instr/ui32.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/kvx/instr/ui32.c b/test/kvx/instr/ui32.c
new file mode 100644
index 00000000..f56a9b95
--- /dev/null
+++ b/test/kvx/instr/ui32.c
@@ -0,0 +1,12 @@
+#include "framework.h"
+
+BEGIN_TEST(unsigned int)
+{
+ c = (long long) a;
+ c += (a >= b);
+ c += (a > b);
+ c += (a <= b);
+ c += (a < b);
+ c += ((a & 0x1U) != (b & 0x1U));
+}
+END_TEST32()