aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/general/ord.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/mppa/general/ord.c')
-rw-r--r--test/mppa/general/ord.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/test/mppa/general/ord.c b/test/mppa/general/ord.c
index f87061dd..eaedcb28 100644
--- a/test/mppa/general/ord.c
+++ b/test/mppa/general/ord.c
@@ -1,5 +1,7 @@
-int main(void){
- long long a = 3, b = -4;
- long long c = a|b;
- return c;
+#include "framework.h"
+
+BEGIN_TEST(long long)
+{
+ c = a | b;
}
+END_TEST()