OSDN Git Service

Update aosp/master LLVM for rebase to r256229
[android-x86/external-llvm.git] / test / CodeGen / MIR / AArch64 / expected-target-flag-name.mir
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 ---
16 name:            sub_small
17 body: |
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 ...