mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
142428ce64
llvm-svn: 81293
19 lines
363 B
LLVM
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
|
|
}
|
|
|