mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-26 12:20:42 +00:00
New test cases for bit accurate integers developed by Guoling Han.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33259 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
; RUN: llvm-as %s -o - | llvm-dis > %t.ll
|
||||
; RUN: diff %t.ll %s.out
|
||||
|
||||
; test 9 bits
|
||||
;
|
||||
%b = constant i9 add(i9 511, i9 1)
|
||||
%c = constant i9 add(i9 511, i9 511)
|
||||
%d = constant i9 add(i9 504, i9 8)
|
||||
%e = constant i9 sub(i9 0 , i9 1)
|
||||
%f = constant i9 sub(i9 0 , i9 511)
|
||||
%g = constant i9 sub(i9 2 , i9 511)
|
||||
|
||||
%h = constant i9 shl(i9 1 , i8 9)
|
||||
%i = constant i9 shl(i9 1 , i8 8)
|
||||
%j = constant i9 lshr(i9 511 , i8 8)
|
||||
%k = constant i9 lshr(i9 511 , i8 9)
|
||||
%l = constant i9 ashr(i9 511 , i8 8)
|
||||
%m = constant i9 ashr(i9 511 , i8 9)
|
||||
|
||||
%n = constant i9 mul(i9 511, i9 2)
|
||||
%o = constant i9 trunc( i10 512 to i9 )
|
||||
%p = constant i9 trunc( i10 511 to i9 )
|
||||
|
||||
Reference in New Issue
Block a user