xref: /minix3/external/bsd/llvm/dist/clang/test/Tooling/ms-asm-no-target.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
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