blob: e73eb63c24dbb0895cd42561c0883ba3ff5b34cd [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | llc -march=c | not grep -- --65535
2; PR596
3
4target endian = little
5target pointersize = 32
6target triple = "i686-pc-linux-gnu"
7
8implementation ; Functions:
9
10declare void %func(int)
11
12void %funcb() {
13entry:
14 %tmp.1 = sub int 0, -65535 ; <int> [#uses=1]
15 call void %func( int %tmp.1 )
16 br label %return
17
18return: ; preds = %entry
19 ret void
20}