aboutsummaryrefslogtreecommitdiff
path: root/tinycc/tests/tests2/126_bound_global.c
diff options
context:
space:
mode:
Diffstat (limited to 'tinycc/tests/tests2/126_bound_global.c')
-rw-r--r--tinycc/tests/tests2/126_bound_global.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/tinycc/tests/tests2/126_bound_global.c b/tinycc/tests/tests2/126_bound_global.c
deleted file mode 100644
index d3a5c3b..0000000
--- a/tinycc/tests/tests2/126_bound_global.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/* test bound checking code without -run */
-
-int arr[10];
-
-int
-main(int argc, char **argv)
-{
- int i;
-
- for (i = 0; i <= sizeof(arr)/sizeof(arr[0]); i++)
- arr[i] = 0;
- return 0;
-}