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()4void 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