llvm-6502/test/Assembler/2007-02-07-UpgradeCSRETCC.ll
Duncan Sands dc024674ff Fix PR1146: parameter attributes are longer part of
the function type, instead they belong to functions
and function calls.  This is an updated and slightly
corrected version of Reid Spencer's original patch.
The only known problem is that auto-upgrading of
bitcode files doesn't seem to work properly (see
test/Bitcode/AutoUpgradeIntrinsics.ll).  Hopefully
a bitcode guru (who might that be? :) ) will fix it.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44359 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-27 13:23:08 +00:00

24 lines
569 B
LLVM

; RUN: llvm-upgrade < %s > /dev/null
; PR1187
%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)
store void (%mystruct* , i32)* %nada, void (%mystruct*, i32)** %fptr
ret int 0
}