aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PowerPC/store-load-fwd.ll
blob: 761fb5a318d3260b819fb1683aed637e3ea1904e (plain)
1
2
3
4
5
6
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | not grep lwz
int %test(int* %P) {
	store int 1, int* %P
	%V = load int* %P
	ret int %V
}