2
0

bitcast.ll 195 B

12345678910
  1. ; RUN: opt < %s -constprop -S | FileCheck %s
  2. ; PR2165
  3. define <1 x i64> @test1() {
  4. %A = bitcast i64 63 to <1 x i64>
  5. ret <1 x i64> %A
  6. ; CHECK-LABEL: @test1(
  7. ; CHECK: ret <1 x i64> <i64 63>
  8. }