1*f4a2713aSLionel Sambuc // RUN: %clang -target x86_64-apple-darwin10 \ 2*f4a2713aSLionel Sambuc // RUN: -### -fsyntax-only -fasm-blocks %s 2> %t 3*f4a2713aSLionel Sambuc // RUN: FileCheck --check-prefix=CHECK-BLOCKS < %t %s 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc // RUN: %clang -target x86_64-apple-darwin10 \ 6*f4a2713aSLionel Sambuc // RUN: -### -fsyntax-only -fno-asm-blocks -fasm-blocks %s 2> %t 7*f4a2713aSLionel Sambuc // RUN: FileCheck --check-prefix=CHECK-BLOCKS < %t %s 8*f4a2713aSLionel Sambuc 9*f4a2713aSLionel Sambuc // CHECK-BLOCKS: "-fasm-blocks" 10*f4a2713aSLionel Sambuc 11*f4a2713aSLionel Sambuc // RUN: %clang -target x86_64-apple-darwin10 \ 12*f4a2713aSLionel Sambuc // RUN: -### -fsyntax-only -fasm-blocks -fno-asm-blocks %s 2> %t 13*f4a2713aSLionel Sambuc // RUN: FileCheck --check-prefix=CHECK-NO-BLOCKS < %t %s 14*f4a2713aSLionel Sambuc 15*f4a2713aSLionel Sambuc // CHECK-NO-BLOCKS-NOT: "-fasm-blocks" 16