diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2014-03-19 22:19:45 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2014-03-19 22:19:45 +0000 |
commit | 43eeee182a81bdcf3ea3fb8db8a3ad4e5edfaf2b (patch) | |
tree | 83063a595db99106562cb2ed99f0def328a6a62c /llvm/test/CodeGen/R600/32-bit-local-address-space.ll | |
parent | 547aff20f51d8df72a7005866278055b9f95e34d (diff) | |
download | bcm5719-llvm-43eeee182a81bdcf3ea3fb8db8a3ad4e5edfaf2b.tar.gz bcm5719-llvm-43eeee182a81bdcf3ea3fb8db8a3ad4e5edfaf2b.zip |
R600/SI: Fix test checking wrong instruction operand.
The source and destination happen to be the same register.
llvm-svn: 204271
Diffstat (limited to 'llvm/test/CodeGen/R600/32-bit-local-address-space.ll')
-rw-r--r-- | llvm/test/CodeGen/R600/32-bit-local-address-space.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/R600/32-bit-local-address-space.ll b/llvm/test/CodeGen/R600/32-bit-local-address-space.ll index 362cc825dff..8c31e01f537 100644 --- a/llvm/test/CodeGen/R600/32-bit-local-address-space.ll +++ b/llvm/test/CodeGen/R600/32-bit-local-address-space.ll @@ -34,7 +34,7 @@ entry: ; CHECK-LABEL: @local_address_gep_const_offset ; CHECK: S_ADD_I32 [[SPTR:s[0-9]]] ; CHECK: V_MOV_B32_e32 [[VPTR:v[0-9]+]], [[SPTR]] -; CHECK: DS_READ_B32 [[VPTR]] +; CHECK: DS_READ_B32 v{{[0-9]+}}, [[VPTR]] define void @local_address_gep_const_offset(i32 addrspace(1)* %out, i32 addrspace(3)* %in) { entry: %0 = getelementptr i32 addrspace(3)* %in, i32 1 |