diff options
author | Dale Johannesen <dalej@apple.com> | 2009-10-21 23:29:12 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2009-10-21 23:29:12 +0000 |
commit | 7d977a3e80455013541f704b94944d9090e96e06 (patch) | |
tree | c9c91930a6f3e86a0c0132df12b86083cfd3b4e6 /test/FrontendC++/msasm.cpp | |
parent | 8ba2d5befc05ca73d3bac8708819bbbe759e2cf9 (diff) |
Adjust testcases for msasm -> alignstack.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84796 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/msasm.cpp')
-rw-r--r-- | test/FrontendC++/msasm.cpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/test/FrontendC++/msasm.cpp b/test/FrontendC++/msasm.cpp deleted file mode 100644 index d8d1f37861..0000000000 --- a/test/FrontendC++/msasm.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// RUN: %llvmgxx %s -fasm-blocks -S -o - | FileCheck %s -// Complicated expression as jump target -// XFAIL: * -// XTARGET: x86,i386,i686 - -void Method3() -{ -// CHECK: Method3 -// CHECK-NOT: msasm - asm("foo:"); -// CHECK: return -} - -void Method4() -{ -// CHECK: Method4 -// CHECK: msasm - asm { - bar: - } -// CHECK: return -} - |