diff options
author | Eric Christopher <echristo@apple.com> | 2011-07-28 00:03:07 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-07-28 00:03:07 +0000 |
commit | 2a077fd19affe5c91a639890c87281177b2ba7a4 (patch) | |
tree | fce22037582450ae9c609f726b2fc075837f620e | |
parent | de86a387dc295370850b607124be4ddc90f52eb0 (diff) |
Remove this test, it's actually testing something that clang doesn't support.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136300 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/2010-03-10-arm-asmreg.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/test/CodeGen/2010-03-10-arm-asmreg.c b/test/CodeGen/2010-03-10-arm-asmreg.c deleted file mode 100644 index 919a92a5b1..0000000000 --- a/test/CodeGen/2010-03-10-arm-asmreg.c +++ /dev/null @@ -1,15 +0,0 @@ -// RUN: %clang_cc1 %s -emit-llvm -O0 -o - | FileCheck %s -// pr6552 - -// XFAIL: * -// XTARGET: arm - -extern void bar(unsigned int ip); - -// CHECK: mov r0, r12 -void foo(void) -{ - register unsigned int ip __asm ("ip"); - bar(ip); -} - |