New testcase

llvm-svn: 2931
This commit is contained in:
Chris Lattner 2002-07-16 21:33:27 +00:00
parent e47dea14e1
commit b744c9ba24
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
; This crashes raise, with an cast<> failure
; RUN: as < %s | opt -raise
implementation
sbyte* %test(int* %ptr) {
%A = cast int* %ptr to sbyte *
%B = add sbyte* %A, %A
ret sbyte * %B
}