Modify two Transforms tests to explicitly check for full function names in some cases...
[oota-llvm.git] / test / Transforms / ConstProp / bitcast.ll
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