10 lines · cpp
1// RUN: clang-check "%s" -- -fasm-blocks -target x86_64-apple-darwin10 2>&1 | FileCheck -check-prefix=CHECK-X86 %s -allow-empty2// REQUIRES: x86-registered-target3 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 available10