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
/
utils
/
update_cc_test_checks
/
Inputs
/
resolve-tmp-conflict.cpp
blob
d82490ea3c886a1cc06942d155b16d4f1b5040a1
1
// RUN: %clang_cc1 -std=c++11 -triple x86_64-unknown-linux-gnu -emit-llvm %s -o - | FileCheck %s
2
3
void
foo
(
int
a
) {
4
int
&
tmp0
=
a
;
5
int
&&
tmp1
=
1
;
6
tmp1
=
a
;
7
return
;
8
}