mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
5049ca67c2
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208604 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
402 B
LLVM
12 lines
402 B
LLVM
; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s
|
|
|
|
declare i32 @llvm.AMDGPU.umul24(i32, i32) nounwind readnone
|
|
|
|
; SI-LABEL: @test_umul24
|
|
define void @test_umul24(i32 addrspace(1)* %out, i32 %src0, i32 %src1) nounwind {
|
|
%mul = call i32 @llvm.AMDGPU.umul24(i32 %src0, i32 %src1) nounwind readnone
|
|
store i32 %mul, i32 addrspace(1)* %out, align 4
|
|
ret void
|
|
}
|
|
|