aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2008-12-23-AsmIntPointerTie.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2008-12-23-AsmIntPointerTie.c')
-rw-r--r--test/FrontendC/2008-12-23-AsmIntPointerTie.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/FrontendC/2008-12-23-AsmIntPointerTie.c b/test/FrontendC/2008-12-23-AsmIntPointerTie.c
deleted file mode 100644
index 5706142..0000000
--- a/test/FrontendC/2008-12-23-AsmIntPointerTie.c
+++ /dev/null
@@ -1,9 +0,0 @@
-// RUN: %llvmgcc %s -S -O1 -o -
-
-#include <stdint.h>
-
-int test(void *b) {
- intptr_t a;
- __asm__ __volatile__ ("%0 %1 " : "=r" (a): "0" (b));
- return a;
-}