1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

new testcase

llvm-svn: 23689
This commit is contained in:
Chris Lattner 2005-10-10 21:57:37 +00:00
parent 703c8f57d6
commit 8290d31c12

View File

@ -0,0 +1,7 @@
; RUN: llvm-as < %s | llc -march=ppc32 &&
; RUN: llvm-as < %s | llc -march=ppc32 | not grep lwz
int %test(int* %P) {
store int 1, int* %P
%V = load int* %P
ret int %V
}