Guard fabs to bfc convert with V6T2 flag
[oota-llvm.git] / test / CodeGen / ARM / addrspacecast.ll
1 ; RUN: llc -mtriple=arm-eabi %s -o /dev/null
2
3 ; Check that codegen for an addrspace cast succeeds without error.
4 define <4 x i32 addrspace(1)*> @f (<4 x i32*> %x) {
5   %1 = addrspacecast <4 x i32*> %x to <4 x i32 addrspace(1)*>
6   ret <4 x i32 addrspace(1)*> %1
7 }