1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 21:13:02 +02:00
llvm-mirror/test/CodeGen/CBackend/2005-07-14-NegationToMinusMinus.ll
Chris Lattner 842a99ced1 fix incorrectly upgraded test, add PR#
llvm-svn: 36114
2007-04-16 05:58:47 +00:00

21 lines
379 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llc -march=c | not grep -- --65535
; PR596
target endian = little
target pointersize = 32
target triple = "i686-pc-linux-gnu"
implementation ; Functions:
declare void %func(int)
void %funcb() {
entry:
%tmp.1 = sub int 0, -65535 ; <int> [#uses=1]
call void %func( int %tmp.1 )
br label %return
return: ; preds = %entry
ret void
}