aboutsummaryrefslogtreecommitdiffstats
path: root/test/Assembler/2007-02-07-UpgradeCSRETCC.ll
blob: 062ee58c3feda598291351d45c42782303fc82f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
; 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)
  store void (%mystruct* , i32)* %nada, void (%mystruct*, i32)** %fptr

  ret int 0
}