1 // RUN: %clang -std=c++20 -### -c %s 2>&1 | FileCheck %s 2 // RUN: %clang -std=c++20 -fno-skip-odr-check-in-gmf -### -c %s 2>&1 \ 3 // RUN: | FileCheck %s --check-prefix=UNUSED 4 // RUN: %clang -std=c++20 -Xclang -fno-skip-odr-check-in-gmf -### -c %s 2>&1 \ 5 // RUN: | FileCheck %s --check-prefix=NO-SKIP 6 7 // CHECK: -fskip-odr-check-in-gmf 8 // UNUSED: warning: argument unused during compilation: '-fno-skip-odr-check-in-gmf' 9 // UNUSED-NOT: -fno-skip-odr-check-in-gmf 10 // NO-SKIP: -fskip-odr-check-in-gmf{{.*}}-fno-skip-odr-check-in-gmf 11