aboutsummaryrefslogtreecommitdiff
path: root/util/romcc/tests/simple_test84.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/romcc/tests/simple_test84.c')
-rw-r--r--util/romcc/tests/simple_test84.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/util/romcc/tests/simple_test84.c b/util/romcc/tests/simple_test84.c
deleted file mode 100644
index bc98bf3419..0000000000
--- a/util/romcc/tests/simple_test84.c
+++ /dev/null
@@ -1,28 +0,0 @@
-struct stuff {
- signed int a : 5;
- signed int b : 6;
- signed int c : 2;
- unsigned int d : 3;
-};
-
-static void main(void)
-{
- struct stuff var;
- volatile int a, b, c, d;
- a = 1;
- b = 2;
- c = 3;
- d = 7;
-
- var.a = a;
- var.b = b;
- var.c = c;
- var.d = d;
-
- a = var.a;
- b = var.b;
- c = var.c;
- d = var.d;
-
- asm(" " :: "r"(a), "r"(b), "r"(c), "r"(d));
-}