diff options
author | Hal Finkel <hfinkel@anl.gov> | 2012-02-07 21:11:12 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2012-02-07 21:11:12 +0000 |
commit | 0ae2510ea00454af29c6fc3f4b012e35d5f5d431 (patch) | |
tree | dcf7114f203ac6b9f54bed2236f6c13f8c291d43 | |
parent | ebba0558c84b67f73989e174e4512f5af0c06cb1 (diff) | |
download | external_llvm-0ae2510ea00454af29c6fc3f4b012e35d5f5d431.zip external_llvm-0ae2510ea00454af29c6fc3f4b012e35d5f5d431.tar.gz external_llvm-0ae2510ea00454af29c6fc3f4b012e35d5f5d431.tar.bz2 |
Allow bugpoint to recognize -bb-vectorize
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150003 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/bugpoint/bugpoint.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/bugpoint/bugpoint.cpp b/tools/bugpoint/bugpoint.cpp index 6a87521..8f15b02 100644 --- a/tools/bugpoint/bugpoint.cpp +++ b/tools/bugpoint/bugpoint.cpp @@ -120,6 +120,7 @@ int main(int argc, char **argv) { PassRegistry &Registry = *PassRegistry::getPassRegistry(); initializeCore(Registry); initializeScalarOpts(Registry); + initializeVectorization(Registry); initializeIPO(Registry); initializeAnalysis(Registry); initializeIPA(Registry); |