aboutsummaryrefslogtreecommitdiff
path: root/test/elf/Inputs/use-shared-32s.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/elf/Inputs/use-shared-32s.c')
-rw-r--r--test/elf/Inputs/use-shared-32s.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/elf/Inputs/use-shared-32s.c b/test/elf/Inputs/use-shared-32s.c
deleted file mode 100644
index 63054cb036ea..000000000000
--- a/test/elf/Inputs/use-shared-32s.c
+++ /dev/null
@@ -1,8 +0,0 @@
-void foo();
-
-void (*func)();
-
-int main() {
- func = foo;
- func();
-}