repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] Better OR's for MVE compares
[llvm-core.git]
/
test
/
Integer
/
undefined_bt.ll
blob
7eba59039b956513b458a8828502be2771125495
1
; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
2
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3
; RUN: diff %t1.ll %t2.ll
4
5
6
@X = global i31 undef
7
8
9
declare i32 @"atoi"(i8 *)
10
11
define i63 @test() {
12
ret i63 undef
13
}
14
15
define i31 @test2() {
16
%X = add i31 undef, 1
17
ret i31 %X
18
}