You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
573 B
24 lines
573 B
# RUN: not llc -mtriple=aarch64-none-linux-gnu -start-after branch-folder -stop-after branch-folder -o /dev/null %s 2>&1 | FileCheck %s
|
|
|
|
--- |
|
|
|
|
@var_i32 = global i32 42
|
|
@var_i64 = global i64 0
|
|
|
|
define i32 @sub_small() {
|
|
entry:
|
|
%val32 = load i32, i32* @var_i32
|
|
ret i32 %val32
|
|
}
|
|
|
|
...
|
|
---
|
|
name: sub_small
|
|
body: |
|
|
bb.0.entry:
|
|
%x8 = ADRP target-flags(aarch64-page) @var_i32
|
|
; CHECK: [[@LINE+1]]:60: use of undefined target flag 'ncc'
|
|
%w0 = LDRWui killed %x8, target-flags(aarch64-pageoff, ncc) @var_i32
|
|
RET_ReallyLR implicit %w0
|
|
...
|