[HLSL] Implement RWBuffer::operator[] via __builtin_hlsl_resource_getpointer (#117017)
[llvm-project.git] / llvm / test / CodeGen / Hexagon / vaddh.ll
blobeb7e74a3486f9effadceefb2b293ff1128b9bdae
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
2 ; CHECK: vaddh(r{{[0-9]+}},r{{[0-9]+}})
4 @g0 = external global i32
5 @g1 = external global i32
7 define void @f0() #0 {
8 b0:
9   %v0 = load i32, ptr @g0, align 4
10   %v1 = load i32, ptr @g1, align 4
11   %v2 = call i32 @llvm.hexagon.A2.svaddh(i32 %v0, i32 %v1)
12   store i32 %v2, ptr @g1, align 4
13   ret void
16 declare i32 @llvm.hexagon.A2.svaddh(i32, i32) #1
18 attributes #0 = { nounwind "target-cpu"="hexagonv5" }
19 attributes #1 = { nounwind readnone "target-cpu"="hexagonv5" }