mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
591bfa1e0b
This feature is needed in order to support shifts of more than 255 bits on large integer types. This changes the syntax for llvm assembly to make shl, ashr and lshr instructions look like a binary operator: shl i32 %X, 1 instead of shl i32 %X, i8 1 Additionally, this should help a few passes perform additional optimizations. llvm-svn: 33776
17 lines
359 B
LLVM
17 lines
359 B
LLVM
; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
|
|
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
|
|
; RUN: diff %t1.ll %t2.ll
|
|
|
|
implementation
|
|
|
|
define i31 @"simpleAdd"(i31 %i0, i31 %j0)
|
|
begin
|
|
%t1 = xor i31 %i0, %j0
|
|
%t2 = or i31 %i0, %j0
|
|
%t3 = and i31 %t1, %t2
|
|
%t4 = shl i31 %i0, 2
|
|
%t5 = ashr i31 %i0, 2
|
|
%t6 = lshr i31 %j0, 22
|
|
ret i31 %t3
|
|
end
|