New testcase
[oota-llvm.git] / test / LLC / 2002-04-14-UnexpectedUnsignedType.ll
1 ; This causes the backend to assert out with:
2 ; SparcInstrInfo.cpp:103: failed assertion `0 && "Unexpected unsigned type"'
3 ;
4 implementation
5
6 declare void "bar"(sbyte* %G)
7
8 void "foo"()
9 begin
10         %cast225 = cast ulong 123456 to sbyte*          ; <sbyte*> [#uses=1]
11         call void %bar( sbyte* %cast225)
12         ret void
13 end