llvm-project/clang/test/Driver/ms-inline-asm.c
Chad Rosier c8e56e8931 [driver, ms-inline asm] MS-Style inline assembly is controlled by the
-fasm-blocks flag, not the -fms-extensions flag.
rdar://12808010

llvm-svn: 169422
2012-12-05 21:08:21 +00:00

16 lines
566 B
C

// RUN: %clang -target x86_64-apple-darwin10 \
// RUN: -### -fsyntax-only -fasm-blocks %s 2> %t
// RUN: FileCheck --check-prefix=CHECK-BLOCKS < %t %s
// RUN: %clang -target x86_64-apple-darwin10 \
// RUN: -### -fsyntax-only -fno-asm-blocks -fasm-blocks %s 2> %t
// RUN: FileCheck --check-prefix=CHECK-BLOCKS < %t %s
// CHECK-BLOCKS: "-fasm-blocks"
// RUN: %clang -target x86_64-apple-darwin10 \
// RUN: -### -fsyntax-only -fasm-blocks -fno-asm-blocks %s 2> %t
// RUN: FileCheck --check-prefix=CHECK-NO-BLOCKS < %t %s
// CHECK-NO-BLOCKS-NOT: "-fasm-blocks"