Assigning and copying command line option objects shouldn't be allowed.
[oota-llvm.git] / test / Assembler / 2007-03-19-NegValue.ll
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 }