Add a missing testcase

llvm-svn: 26834
This commit is contained in:
Nate Begeman 2006-03-17 22:39:45 +00:00
parent f4774c9091
commit 079b67fb45

View File

@ -0,0 +1,6 @@
; RUN: llvm-as < %s | llc -march=ppc32 | grep neg
int %test(int %X) {
%Y = sub int 0, %X
ret int %Y
}