1 // 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
Break()8 void 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
14