You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
20
external/llvm/test/CodeGen/Hexagon/static.ll
vendored
Normal file
20
external/llvm/test/CodeGen/Hexagon/static.ll
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
; RUN: llc -march=hexagon < %s | FileCheck %s
|
||||
|
||||
@num = external global i32
|
||||
@acc = external global i32
|
||||
@val = external global i32
|
||||
|
||||
; CHECK-DAG: memw(gp+#num)
|
||||
; CHECK-DAG: memw(gp+#acc)
|
||||
; CHECK-DAG: memw(gp+#val)
|
||||
|
||||
define void @foo() nounwind {
|
||||
entry:
|
||||
%0 = load i32, i32* @num, align 4
|
||||
%1 = load i32, i32* @acc, align 4
|
||||
%mul = mul nsw i32 %0, %1
|
||||
%2 = load i32, i32* @val, align 4
|
||||
%add = add nsw i32 %mul, %2
|
||||
store i32 %add, i32* @num, align 4
|
||||
ret void
|
||||
}
|
Reference in New Issue
Block a user