diff options
author | Matthew Simpson <mssimpso@codeaurora.org> | 2016-05-19 20:08:32 +0000 |
---|---|---|
committer | Matthew Simpson <mssimpso@codeaurora.org> | 2016-05-19 20:08:32 +0000 |
commit | 330a12554249445b4bbe6e6a8385c23842794e0c (patch) | |
tree | 2ec0d90e43e9020c6a0575fb44494270c3c74ecc /llvm/tools/opt/opt.cpp | |
parent | 9572372a311790dd1f29096bd683c59ffaf3ff53 (diff) | |
download | bcm5719-llvm-330a12554249445b4bbe6e6a8385c23842794e0c.tar.gz bcm5719-llvm-330a12554249445b4bbe6e6a8385c23842794e0c.zip |
[ARM, AArch64] Properly initialize InterleavedAccessPass
InterleavedAccessPass is an IR-level pass, so this change will enable testing
it with opt. This is part of D20250.
llvm-svn: 270101
Diffstat (limited to 'llvm/tools/opt/opt.cpp')
-rw-r--r-- | llvm/tools/opt/opt.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/tools/opt/opt.cpp b/llvm/tools/opt/opt.cpp index a790ccfe356..467392ef650 100644 --- a/llvm/tools/opt/opt.cpp +++ b/llvm/tools/opt/opt.cpp @@ -363,6 +363,7 @@ int main(int argc, char **argv) { initializeSjLjEHPreparePass(Registry); initializePreISelIntrinsicLoweringPass(Registry); initializeGlobalMergePass(Registry); + initializeInterleavedAccessPass(Registry); #ifdef LINK_POLLY_INTO_TOOLS polly::initializePollyPasses(Registry); |