blob: 364bec1c3ec4590e3e5e55d462f37db52a6e745d (
plain)
1
2
3
4
5
6
7
|
; Test whether negative values > 64 bits retain their negativeness.
; RUN: llvm-as < %s | llvm-dis | grep 'add i65.*, -1'
define i65 @testConsts(i65 %N) {
%a = add i65 %N, -1
ret i65 %a
}
|