1 // RUN: %clang %s -c -fexperimental-late-parse-attributes 2>&1 -### | FileCheck %s -check-prefix=CHECK-ON 2 // RUN: %clang %s -c -fno-experimental-late-parse-attributes -fexperimental-late-parse-attributes 2>&1 -### | FileCheck %s -check-prefix=CHECK-ON 3 4 // CHECK-ON: -cc1 5 // CHECK-ON: -fexperimental-late-parse-attributes 6 7 // RUN: %clang %s -c 2>&1 -### | FileCheck %s -check-prefix=CHECK-OFF 8 // RUN: %clang %s -c -fno-experimental-late-parse-attributes 2>&1 -### | FileCheck %s -check-prefix=CHECK-OFF 9 // RUN: %clang %s -c -fexperimental-late-parse-attributes -fno-experimental-late-parse-attributes 2>&1 -### | FileCheck %s -check-prefix=CHECK-OFF 10 11 // CHECK-OFF: -cc1 12 // CHECK-OFF-NOT: -fexperimental-late-parse-attributes 13