xref: /llvm-project/clang/test/Tooling/ms-asm-no-target.cpp (revision 3e851f4a688c42315355aae743b403dddeba9860)
1 // RUN: clang-check "%s" -- -fasm-blocks -target x86_64-apple-darwin10 2>&1 | FileCheck -check-prefix=CHECK-X86 %s -allow-empty
2 // REQUIRES: x86-registered-target
3 
Break()4 void Break() {
5   __asm { int 3 }
6 }
7 
8 // clang-check should initialize the x86 target, so x86 should work.
9 // CHECK-X86-NOT: error: MS-style inline assembly is not available
10