mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 14:46:53 +00:00
8bf0f64923
turn into a C predecrement operator. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22438 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
379 B
LLVM
20 lines
379 B
LLVM
; RUN: llvm-as < %s | llc -march=c | not grep "\-\-65535"
|
|
; 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
|
|
}
|