repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[llvm-mca] Add a -mattr flag
[llvm-core.git]
/
test
/
Assembler
/
2007-03-19-NegValue.ll
blob
a2deac280b84f1d4e45bf5065e3520794386d8ac
1
; Test whether negative values > 64 bits retain their negativeness.
2
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
3
; RUN: verify-uselistorder %s
4
5
define i65 @testConsts(i65 %N) {
6
; CHECK: add i65 %N, -1
7
%a = add i65 %N, -1
8
ret i65 %a
9
}