mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
7bc8414ee9
Only Linux is supported at the moment, and other platforms quickly fault. As a result these tests would fail on non-Linux hosts. It may be worth making the tests more generic again as more platforms are supported. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174170 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
545 B
LLVM
19 lines
545 B
LLVM
; RUN: llc -mtriple=aarch64-none-linux-gnu -verify-machineinstrs < %s | FileCheck %s
|
|
|
|
@addr = global i8* null
|
|
|
|
define void @test_blockaddress() {
|
|
; CHECK: test_blockaddress:
|
|
store volatile i8* blockaddress(@test_blockaddress, %block), i8** @addr
|
|
%val = load volatile i8** @addr
|
|
indirectbr i8* %val, [label %block]
|
|
; CHECK: adrp [[DEST_HI:x[0-9]+]], [[DEST_LBL:.Ltmp[0-9]+]]
|
|
; CHECK: add [[DEST:x[0-9]+]], [[DEST_HI]], #:lo12:[[DEST_LBL]]
|
|
; CHECK: str [[DEST]],
|
|
; CHECK: ldr [[NEWDEST:x[0-9]+]]
|
|
; CHECK: br [[NEWDEST]]
|
|
|
|
block:
|
|
ret void
|
|
}
|