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
fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git]
/
test
/
Transforms
/
ConstProp
/
bitcast.ll
blob
53239c7e4fe08e80bc9a2f360a1fd807a24b2372
1
; RUN: opt < %s -constprop -S | FileCheck %s
2
; PR2165
3
4
define <1 x i64> @test1() {
5
%A = bitcast i64 63 to <1 x i64>
6
ret <1 x i64> %A
7
; CHECK: @test1
8
; CHECK: ret <1 x i64> <i64 63>
9
}
10