diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
commit | 5a5ac124e1efaf208671f01c46edb15f29ed2a0b (patch) | |
tree | a6140557876943cdd800ee997c9317283394b22c /test/CodeGen/PowerPC/alias.ll | |
parent | f03b5bed27d0d2eafd68562ce14f8b5e3f1f0801 (diff) |
Diffstat (limited to 'test/CodeGen/PowerPC/alias.ll')
-rw-r--r-- | test/CodeGen/PowerPC/alias.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/CodeGen/PowerPC/alias.ll b/test/CodeGen/PowerPC/alias.ll index 86e41148a0d7..524abd5da3ef 100644 --- a/test/CodeGen/PowerPC/alias.ll +++ b/test/CodeGen/PowerPC/alias.ll @@ -10,8 +10,8 @@ ; CHECK-LABEL: bar: define i32 @bar() { ; MEDIUM: addis 3, 2, fooa@toc@ha -; LARGE: addis 3, 2, .LC1@toc@ha - %a = load i32* @fooa +; LARGE: addis 3, 2, .L[[L0:.*]]@toc@ha + %a = load i32, i32* @fooa ret i32 %a } @@ -19,13 +19,13 @@ define i32 @bar() { define i64 @bar2() { ; MEDIUM: addis 3, 2, foo2a@toc@ha ; MEDIUM: addi 3, 3, foo2a@toc@l -; LARGE: addis 3, 2, .LC3@toc@ha - %a = load i64* @foo2a +; LARGE: addis 3, 2, .L[[L1:.*]]@toc@ha + %a = load i64, i64* @foo2a ret i64 %a } -; LARGE: .LC1: +; LARGE: .L[[L0]]: ; LARGE-NEXT: .tc fooa[TC],fooa -; LARGE: .LC3: +; LARGE: .L[[L1]]: ; LARGE-NEXT: .tc foo2a[TC],foo2a |