diff options
| author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2014-01-02 21:09:05 +0000 |
|---|---|---|
| committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2014-01-02 21:09:05 +0000 |
| commit | ceae33569dade270cd7a8e5c3e2c3e0ae865ce80 (patch) | |
| tree | 9a8d22880b8b52104645995583de25458aa4aaa6 /llvm/test/Verifier/bitcast-address-space-through-gep.ll | |
| parent | d4368fde45a8faef3253c66236c00c2e9169ff69 (diff) | |
| download | bcm5719-llvm-ceae33569dade270cd7a8e5c3e2c3e0ae865ce80.tar.gz bcm5719-llvm-ceae33569dade270cd7a8e5c3e2c3e0ae865ce80.zip | |
Fix all the verifier tests I added for address spaces.
I originally had these using opt -verify, and I never removed the
-verify when converting them to use llvm-as instead, so these were
failing because of using the -verify argument which llvm-as doesn't have
instead of what it's actually supposed to be testing.
llvm-svn: 198352
Diffstat (limited to 'llvm/test/Verifier/bitcast-address-space-through-gep.ll')
| -rw-r--r-- | llvm/test/Verifier/bitcast-address-space-through-gep.ll | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/test/Verifier/bitcast-address-space-through-gep.ll b/llvm/test/Verifier/bitcast-address-space-through-gep.ll index 8e950dc1e6b..9494420841d 100644 --- a/llvm/test/Verifier/bitcast-address-space-through-gep.ll +++ b/llvm/test/Verifier/bitcast-address-space-through-gep.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as -verify -disable-output %s +; RUN: not llvm-as -disable-output %s 2>&1 | FileCheck %s target datalayout = "e-p:32:32:32-p1:16:16:16-p2:8:8:8-i1:8:32-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:32:64-v128:32:128-a0:0:32-n8:16:32" @@ -7,6 +7,8 @@ target datalayout = "e-p:32:32:32-p1:16:16:16-p2:8:8:8-i1:8:32-i8:8:32-i16:16:32 @as2_array = addrspace(2) global [32 x i32] zeroinitializer +; CHECK: error: invalid cast opcode for cast from 'i32 addrspace(2)*' to 'i32 addrspace(1)*' + ; Make sure we still reject the bitcast after the value is accessed through a GEP @bitcast_after_gep = global %struct.Foo { i32 addrspace(1)* bitcast (i32 addrspace(2)* getelementptr ([32 x i32] addrspace(2)* @as2_array, i32 0, i32 8) to i32 addrspace(1)*) } |

