repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Driver
/
option-aliases.c
blob
e50289cc3bdf88352a057951ddf44d79f80b8d95
1
// RUN: %clang -### -S \
2
// RUN: --save-temps --undefine-macro=FOO --undefine-macro BAR \
3
// RUN: --param=FOO --output=FOO %s 2>&1 | \
4
// RUN: FileCheck %s
5
6
// CHECK-LABEL: "-cc1"
7
// CHECK: "-E"
8
// CHECK: "-U" "FOO"
9
// CHECK: "-U" "BAR"
10
// CHECK: "-o" "option-aliases.i"
11
12
// CHECK-LABEL: "-cc1"
13
// CHECK: "-S"
14
// CHECK: "-o" "FOO"