mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
9 lines
204 B
LLVM
9 lines
204 B
LLVM
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep sub
|
||
|
|
||
|
define <3 x i8> @f(<3 x i8> %a) {
|
||
|
%A = sub <3 x i8> zeroinitializer, %a
|
||
|
%B = mul <3 x i8> %A, <i8 5, i8 5, i8 5>
|
||
|
ret <3 x i8> %B
|
||
|
}
|
||
|
|