blob: 58375fa7327cce32e6faea4b1955943ee965e265 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// RUN: rm -f %t.log
// RUN: env CC_PRINT_OPTIONS=1 \
// RUN: CC_PRINT_OPTIONS_FILE=%t.log \
// RUN: %clang -S -o %t.s %s
// RUN: FileCheck %s < %t.log
// RUN: rm -f %t.log
// RUN: env CC_PRINT_OPTIONS=1 \
// RUN: CC_PRINT_OPTIONS_FILE=%t.log \
// RUN: %clang -fdriver-only -o %t.s %s
// RUN: FileCheck %s < %t.log
// CHECK: [Logging clang options]
// CHECK: {{.*}} "-cc1"
|