llvm-6502/test/Transforms/ArgumentPromotion/aggregate-promote.ll
2006-12-02 04:23:10 +00:00

22 lines
461 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | opt -argpromotion -instcombine | not grep load
%QuadTy = type {int, int, int, int}
%G = constant %QuadTy {int 0, int 0, int 17, int 25 }
implementation
internal int %test(%QuadTy* %P) {
%A = getelementptr %QuadTy* %P, long 0, uint 3
%B = getelementptr %QuadTy* %P, long 0, uint 2
%a = load int* %A
%b = load int* %B
%V = add int %a, %b
ret int %V
}
int %caller() {
%V = call int %test(%QuadTy* %G)
ret int %V
}