llvm-6502/test/CodeGen/CBackend/2005-07-14-NegationToMinusMinus.ll
Reid Spencer 4575ab2186 For PR1336:
XFAIL tests covered by the PR. These will be un-XFAILed as they are fixed.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36093 91177308-0d34-0410-b5e6-96231b3b80d8
2007-04-15 23:00:46 +00:00

22 lines
404 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llc -march=c | not grep -- -65535
; XFAIL: *
; ModuleID = '<stdin>'
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
}