blob: 7b6237d719d17ccc6fd899fb634e9bd293ea810b [file] [log] [blame]
Saleem Abdulrasool72587352014-04-03 16:01:44 +00001; RUN: llc -mtriple=arm-eabi %s -o /dev/null
James Molloy8a259922013-12-03 11:23:11 +00002
3; Check that codegen for an addrspace cast succeeds without error.
4define <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}