diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2020-01-22 16:01:15 -0500 |
---|---|---|
committer | Hans Wennborg <hans@chromium.org> | 2020-02-03 16:05:43 +0100 |
commit | fa51929f03f541de48e7eaf4a06a27166db3580c (patch) | |
tree | f96da7036d8201dd64756ea26063d34ac94eb53a /llvm/test/CodeGen/AMDGPU/r600-constant-array-fixup.ll | |
parent | 5cca13d43b7e972d0de6301cfed30781251489a1 (diff) | |
download | bcm5719-llvm-fa51929f03f541de48e7eaf4a06a27166db3580c.tar.gz bcm5719-llvm-fa51929f03f541de48e7eaf4a06a27166db3580c.zip |
R600: Fix failing testcase
(cherry picked from commit 7dc49f77ee508b4152f9291c8e804e4eda3653d3)
Diffstat (limited to 'llvm/test/CodeGen/AMDGPU/r600-constant-array-fixup.ll')
-rw-r--r-- | llvm/test/CodeGen/AMDGPU/r600-constant-array-fixup.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/AMDGPU/r600-constant-array-fixup.ll b/llvm/test/CodeGen/AMDGPU/r600-constant-array-fixup.ll index 4813960b98a..7166a88b481 100644 --- a/llvm/test/CodeGen/AMDGPU/r600-constant-array-fixup.ll +++ b/llvm/test/CodeGen/AMDGPU/r600-constant-array-fixup.ll @@ -1,16 +1,16 @@ -; RUN: llc -filetype=obj -march=r600 -mcpu=cypress -verify-machineinstrs < %s | llvm-readobj -r --symbols | FileCheck %s +; RUN: llc -filetype=obj -mtriple=r600-mesa-mesa3d -mcpu=cypress -verify-machineinstrs < %s | llvm-readobj -r --symbols | FileCheck %s @arr = internal unnamed_addr addrspace(4) constant [4 x i32] [i32 4, i32 5, i32 6, i32 7], align 4 ; CHECK: Relocations [ ; CHECK: Section (3) .rel.text { -; CHECK: 0x58 R_AMDGPU_ABS32 arr 0x0 +; CHECK: 0x58 R_AMDGPU_ABS32 .text 0x0 ; CHECK: } ; CHECK: ] ; CHECK: Symbol { ; CHECK: Name: arr (11) -; CHECK: Value: 0x0 +; CHECK: Value: 0x70 ; CHECK: Size: 16 ; CHECK: Binding: Local (0x0) ; CHECK: Type: Object (0x1) |