aboutsummaryrefslogtreecommitdiff
path: root/tests/tests2/85-asm-outside-function.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests2/85-asm-outside-function.c')
-rw-r--r--tests/tests2/85-asm-outside-function.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/tests2/85-asm-outside-function.c b/tests/tests2/85-asm-outside-function.c
deleted file mode 100644
index dc5639a..0000000
--- a/tests/tests2/85-asm-outside-function.c
+++ /dev/null
@@ -1,9 +0,0 @@
-extern int printf (const char *, ...);
-extern void vide(void);
-__asm__("vide: ret");
-
-int main() {
- vide();
- printf ("okay\n");
- return 0;
-}