brintos

brintos / llvm-project-archived public Read only

0
0
Text · 724 B · 6b54b89 Raw
13 lines · c
1// RUN: %clang %s -c -fexperimental-late-parse-attributes 2>&1 -### | FileCheck %s -check-prefix=CHECK-ON2// RUN: %clang %s -c -fno-experimental-late-parse-attributes -fexperimental-late-parse-attributes 2>&1 -### | FileCheck %s -check-prefix=CHECK-ON3 4// CHECK-ON: -cc15// CHECK-ON: -fexperimental-late-parse-attributes6 7// RUN: %clang %s -c 2>&1 -### | FileCheck %s -check-prefix=CHECK-OFF8// RUN: %clang %s -c -fno-experimental-late-parse-attributes 2>&1 -### | FileCheck %s -check-prefix=CHECK-OFF9// RUN: %clang %s -c -fexperimental-late-parse-attributes -fno-experimental-late-parse-attributes 2>&1 -### | FileCheck %s -check-prefix=CHECK-OFF10 11// CHECK-OFF: -cc112// CHECK-OFF-NOT: -fexperimental-late-parse-attributes13