1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-14 02:33:53 +00:00
llvm-6502/test/Assembler/2007-03-19-NegValue.ll

8 lines
193 B
LLVM
Raw Normal View History

; Test whether negative values > 64 bits retain their negativeness.
; RUN: llvm-as < %s | llvm-dis | grep "add i65.*, -1"
define i65 @testConsts(i65 %N) {
%a = add i65 %N, -1
ret i65 %a
}