1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 21:42:54 +02:00
llvm-mirror/test/Assembler/2007-03-19-NegValue.ll

9 lines
251 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"
; RUN: verify-uselistorder %s -preserve-bc-use-list-order
define i65 @testConsts(i65 %N) {
%a = add i65 %N, -1
ret i65 %a
}