blob: 68930b159680c7cfd4bf10cf48c421cfbc7cbcea [file] [log] [blame]
Alp Toker9a8a5fc2013-11-08 06:50:48 +00001// RUN: not clang-check "%s" -- -fasm-blocks -target x86_64-apple-darwin10 2>&1 | FileCheck -check-prefix=CHECK-X86 %s
2// RUN: not clang-check "%s" -- -fasm-blocks -target powerpc-apple-darwin10 2>&1 | FileCheck -check-prefix=CHECK-PPC %s
3
4// Test that we diagnose instead of crashing when the application hasn't
5// initialized LLVM targets supporting the MS-style inline asm parser.
6// Also test that the ordinary error is emitted on unsupported architectures.
7
8void Break() {
9 __asm { int 3 }
10}
11
12// CHECK-X86: error: MS-style inline assembly is not available
13// CHECK-PPC: error: Unsupported architecture 'powerpc' for MS-style inline assembly