blob: ca2cac22934e770c0fd46f302e1594e1113448a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \
// RUN: -target i386-unknown-linux \
// RUN: --sysroot=%S/Inputs/fake_install_tree \
// RUN: | FileCheck --check-prefix=CHECK-GCC-4-7 %s
// CHECK-GCC-4-7: -fuse-init-array
// RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \
// RUN: -target i386-unknown-linux \
// RUN: --sysroot=%S/Inputs/basic_linux_tree \
// RUN: | FileCheck --check-prefix=CHECK-GCC-4-6 %s
// CHECK-GCC-4-6-NOT: -fuse-init-array
|