mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
c95df8b6d8
llvm-svn: 81257
9 lines
145 B
LLVM
9 lines
145 B
LLVM
; RUN: opt < %s -instcombine -S | not grep bitcast
|
|
; PR2165
|
|
|
|
define <1 x i64> @test() {
|
|
%A = bitcast i64 63 to <1 x i64>
|
|
ret <1 x i64> %A
|
|
}
|
|
|