10 lines · plain
1; Test whether negative values > 64 bits retain their negativeness.2; RUN: llvm-as < %s | llvm-dis | FileCheck %s3; RUN: verify-uselistorder %s4 5define i65 @testConsts(i65 %N) {6; CHECK: add i65 %N, -17 %a = add i65 %N, -18 ret i65 %a9}10