diff options
author | Markus Lavin <markus.lavin@ericsson.com> | 2018-12-07 08:23:37 +0000 |
---|---|---|
committer | Markus Lavin <markus.lavin@ericsson.com> | 2018-12-07 08:23:37 +0000 |
commit | 4dc4ebd606d6bfa9ae4a8d9c7182f01873da96ee (patch) | |
tree | 4f5d180d1cc68dff3cd7ae3b96d96dcfc50c50bf /llvm/test/Transforms/LoadStoreVectorizer/AMDGPU/complex-index.ll | |
parent | 86aba5eeeee1048ccc5be60c76e35a1ed42d2fe6 (diff) | |
download | bcm5719-llvm-4dc4ebd606d6bfa9ae4a8d9c7182f01873da96ee.tar.gz bcm5719-llvm-4dc4ebd606d6bfa9ae4a8d9c7182f01873da96ee.zip |
[PM] Port LoadStoreVectorizer to the new pass manager.
Differential Revision: https://reviews.llvm.org/D54848
llvm-svn: 348570
Diffstat (limited to 'llvm/test/Transforms/LoadStoreVectorizer/AMDGPU/complex-index.ll')
-rw-r--r-- | llvm/test/Transforms/LoadStoreVectorizer/AMDGPU/complex-index.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/Transforms/LoadStoreVectorizer/AMDGPU/complex-index.ll b/llvm/test/Transforms/LoadStoreVectorizer/AMDGPU/complex-index.ll index a118ff8fdd5..cd1c7fdc521 100644 --- a/llvm/test/Transforms/LoadStoreVectorizer/AMDGPU/complex-index.ll +++ b/llvm/test/Transforms/LoadStoreVectorizer/AMDGPU/complex-index.ll @@ -1,4 +1,5 @@ ; RUN: opt -mtriple=amdgcn-amd-amdhsa -basicaa -load-store-vectorizer -S -o - %s | FileCheck %s +; RUN: opt -mtriple=amdgcn-amd-amdhsa -aa-pipeline=basic-aa -passes='function(load-store-vectorizer)' -S -o - %s | FileCheck %s target datalayout = "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5" @@ -48,4 +49,4 @@ entry: %cstoreval2 = fptrunc double %storeval2 to float store float %cstoreval2, float addrspace(1)* %arrayidx24, align 4 ret void -}
\ No newline at end of file +} |