• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# RUN: not llc -mtriple=aarch64-none-linux-gnu -start-after branch-folder -stop-after branch-folder -o /dev/null %s 2>&1 | FileCheck %s
2
3--- |
4
5  @var_i32 = global i32 42
6  @var_i64 = global i64 0
7
8  define i32 @sub_small() {
9  entry:
10    %val32 = load i32, i32* @var_i32
11    ret i32 %val32
12  }
13
14...
15---
16name:            sub_small
17body: |
18  bb.0.entry:
19    %x8 = ADRP target-flags(aarch64-page) @var_i32
20  ; CHECK: [[@LINE+1]]:60: expected the name of the target flag
21    %w0 = LDRWui killed %x8, target-flags(aarch64-pageoff, ) @var_i32
22    RET_ReallyLR implicit %w0
23...
24