mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
43f8619548
On Hexagon "x = y" is a syntax used in most instructions, and is not treated as a directive. Differential Revision: https://reviews.llvm.org/D44256 llvm-svn: 328635
17 lines
372 B
LLVM
17 lines
372 B
LLVM
; RUN: llc < %s -mtriple=arm-linux-gnueabi | FileCheck %s
|
|
|
|
@X = constant {i8, i8 } { i8 0, i8 0 }
|
|
@XA = alias i8, getelementptr inbounds ({ i8, i8 }, {i8, i8}* @X, i32 0, i32 1)
|
|
|
|
define void @f(i8** %p) align 2 {
|
|
entry:
|
|
store i8* @XA, i8 **%p, align 4
|
|
ret void
|
|
}
|
|
|
|
; CHECK: f:
|
|
; CHECK: ldr r{{.*}}, [[L:.*]]
|
|
; CHECK: [[L]]:
|
|
; CHECK-NEXT: .long XA
|
|
; CHECK: .set XA, X+1
|