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
5define i65 @testConsts(i65 %N) {
6; CHECK: add i65 %N, -1
7  %a = add i65 %N, -1
8  ret i65 %a
9}
10