For PR1187:

Add some interesting CSRETCC upgrade cases.

llvm-svn: 34041
This commit is contained in:
Reid Spencer 2007-02-08 06:45:02 +00:00
parent 4b33b03487
commit cc0209e555

View File

@ -0,0 +1,21 @@
; For PR1187
; RUN: llvm-upgrade < %s > /dev/null
%mystruct = type { int, double }
%glob = global %mystruct { int 3, double 42.0 }
%fptr = external global void (i32)*
implementation
csretcc void %nada(%mystruct * %ptr, int %val) {
ret void
}
int %main(int %argc, ubyte** %argv) {
%astr = alloca %mystruct
call void %nada(%mystruct* %astr, i32 7)
%fptr = alloca void (%mystruct*, i32)*
%f = load void (%mystruct*, i32)**%fptr
call csretcc void %f(%mystruct* %astr, i32 7)
ret int 0
}