summaryrefslogtreecommitdiff
path: root/gas/testsuite/gas/tic80/relocs1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gas/testsuite/gas/tic80/relocs1.c')
-rw-r--r--gas/testsuite/gas/tic80/relocs1.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/gas/testsuite/gas/tic80/relocs1.c b/gas/testsuite/gas/tic80/relocs1.c
deleted file mode 100644
index 6af04b1100a..00000000000
--- a/gas/testsuite/gas/tic80/relocs1.c
+++ /dev/null
@@ -1,28 +0,0 @@
-extern int xfunc (int y);
-
-static int sfunc (int y)
-{
- xfunc (y);
-}
-
-int gfunc (int y)
-{
- sfunc (y);
-}
-
-int branches (int y)
-{
- int z;
-
- for (z = y; z < y + 10; z++)
- {
- if (z & 0x1)
- {
- gfunc (z);
- }
- else
- {
- xfunc (z);
- }
- }
-}