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