Test case noticed by Sheng that fails because negative values that are

greater than 64-bits don't have the sign bits extended on construction of
the APInt.

llvm-svn: 35178
This commit is contained in:
Reid Spencer 2007-03-19 20:35:26 +00:00
parent 2946e07557
commit 732f0a838e
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
; 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
}