llvm-6502/test/CodeGen/CBackend/2005-07-14-NegationToMinusMinus.ll
Chris Lattner 6ab5d5d2b0 fix incorrectly upgraded test, add PR#
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36114 91177308-0d34-0410-b5e6-96231b3b80d8
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
}