repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Clean up ConstantRange a bit:
[llvm.git]
/
test
/
Feature
/
undefined.ll
blob
e63ce41f681b55f16a0f3ecfd1dd74c9f5902013
1
; RUN: llvm-as < %s | llvm-dis > %t1.ll
2
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3
; RUN: diff %t1.ll %t2.ll
4
5
@X = global i32 undef ; <i32*> [#uses=0]
6
7
declare i32 @atoi(i8*)
8
9
define i32 @test() {
10
ret i32 undef
11
}
12
13
define i32 @test2() {
14
%X = add i32 undef, 1 ; <i32> [#uses=1]
15
ret i32 %X
16
}
17