1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
13 lines
374 B
C
13 lines
374 B
C
// RUN: %clang -target armv7-apple-darwin10 \
|
|
// RUN: -mno-global-merge -### -fsyntax-only %s 2> %t
|
|
// RUN: FileCheck --check-prefix=CHECK-NGM < %t %s
|
|
|
|
// CHECK-NGM: "-mno-global-merge"
|
|
|
|
// RUN: %clang -target armv7-apple-darwin10 \
|
|
// RUN: -mglobal-merge -### -fsyntax-only %s 2> %t
|
|
// RUN: FileCheck --check-prefix=CHECK-GM < %t %s
|
|
|
|
// CHECK-GM-NOT: "-mglobal-merge"
|
|
|