llvm-6502/test/CodeGen/CBackend/2005-07-14-NegationToMinusMinus.ll
2009-09-09 00:09:15 +00:00

19 lines
363 B
LLVM

; RUN: llc < %s -march=c | not grep -- --65535
; PR596
target datalayout = "e-p:32:32"
target triple = "i686-pc-linux-gnu"
declare void @func(i32)
define void @funcb() {
entry:
%tmp.1 = sub i32 0, -65535 ; <i32> [#uses=1]
call void @func( i32 %tmp.1 )
br label %return
return: ; preds = %entry
ret void
}