blob: e90cf351e1d737595eb239c0d335c868f598511f [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; Test whether negative values > 64 bits retain their negativeness.
2; RUN: llvm-as < %s | llvm-dis | grep {add i65.*, -1}
3
4define i65 @testConsts(i65 %N) {
5 %a = add i65 %N, -1
6 ret i65 %a
7}