summaryrefslogtreecommitdiff
path: root/test/Transforms/ScalarRepl/basictest.ll
blob: b7e0a295e380a2626fc1ac7cebc61bed26374200 (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llvm-upgrade < %s | llvm-as | opt -scalarrepl -mem2reg | llvm-dis | not grep alloca

int %test() {
  %X = alloca { int, float }
  %Y = getelementptr {int,float}* %X, long 0, uint 0
  store int 0, int* %Y

  %Z = load int* %Y
  ret int %Z
}