brintos

brintos / llvm-project-archived public Read only

0
0
Text · 702 B · ab4880d Raw
15 lines · c
1// Check the -fmax-type-align=N flag2//3// RUN: %clang --target=x86_64-apple-macosx10.7.0 %s -o - -### 2>&1 | \4// RUN:   FileCheck -check-prefix=TEST0 %s5// TEST0: -fmax-type-align=166// RUN: %clang -fmax-type-align=32 --target=x86_64-apple-macosx10.7.0 %s -o - -### 2>&1 | \7// RUN:   FileCheck -check-prefix=TEST1 %s8// TEST1: -fmax-type-align=329// RUN: %clang -fmax-type-align=32 -fno-max-type-align --target=x86_64-apple-macosx10.7.0 %s -o - -### 2>&1 | \10// RUN:   FileCheck -check-prefix=TEST2 %s11// TEST2-NOT: -fmax-type-align12// RUN: %clang -fno-max-type-align --target=x86_64-apple-macosx10.7.0 %s -o - -### 2>&1 | \13// RUN:   FileCheck -check-prefix=TEST3 %s14// TEST3-NOT: -fmax-type-align15