Be sure to initialize DwarfCompileUnit::LabelBegin now that it may be skipped in...
[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 | grep "add i65.*, -1"
3 ; RUN: verify-uselistorder %s
4
5 define i65 @testConsts(i65 %N) {
6   %a = add i65 %N, -1
7   ret i65 %a
8 }