mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-26 23:09:03 -04:00

Convert the last few tests using -ccc-print-options to -### and remove -ccc-print-options. llvm-svn: 189802
15 lines
325 B
C
15 lines
325 B
C
// RUN: %clang -### -S \
|
|
// RUN: --save-temps --undefine-macro=FOO --undefine-macro BAR \
|
|
// RUN: --param=FOO --output=FOO %s 2>&1 | \
|
|
// RUN: FileCheck %s
|
|
|
|
// CHECK: "-cc1"
|
|
// CHECK: "-E"
|
|
// CHECK: "-U" "FOO"
|
|
// CHECK: "-U" "BAR"
|
|
// CHECK: "-o" "option-aliases.i"
|
|
|
|
// CHECK-NEXT: "-cc1"
|
|
// CHECK: "-S"
|
|
// CHECK: "-o" "FOO"
|