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