Enhance constant folding of bitcast operations on vectors of floats.
[oota-llvm.git] / test / Transforms / Internalize / 2009-01-05-InternalizeAliases.ll
1 ; RUN: opt < %s -internalize -S | grep internal | count 3
2
3 @A = global i32 0
4 @B = alias i32* @A
5 @C = alias i32* @B
6
7 define i32 @main() {
8         %tmp = load i32* @C
9         ret i32 %tmp
10 }