Clang Project

clang_source_code/test/Driver/noinline.c
1// Make sure the driver is correctly passing -fno-inline-functions
2// rdar://10972766
3
4// RUN: %clang -target x86_64-apple-darwin10 \
5// RUN:   -fno-inline -fno-inline-functions -### -fsyntax-only %s 2> %t
6// RUN: FileCheck < %t %s
7
8// CHECK: clang
9// CHECK: "-fno-inline"
10// CHECK: "-fno-inline-functions"
11