mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 06:26:06 +00:00

Also, delete the option from the `// Test that we don't error on these.` block in test/Driver/clang_f_opts.c
7 lines
338 B
C
7 lines
338 B
C
// RUN: %clang -### -c %s -fno-merge-all-constants -fmerge-all-constants 2>&1 | FileCheck %s
|
|
// CHECK: "-fmerge-all-constants"
|
|
|
|
// RUN: %clang -### -c %s 2>&1 | FileCheck --check-prefix=NO %s
|
|
// RUN: %clang -### -c %s -fmerge-all-constants -fno-merge-all-constants 2>&1 | FileCheck --check-prefix=NO %s
|
|
// NO-NOT: "-fmerge-all-constants"
|