diff options
author | Nadav Rotem <nrotem@apple.com> | 2012-10-24 17:55:53 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2012-10-24 17:55:53 +0000 |
commit | 199063ea37d8cc651a20ab00eef4326cd9331371 (patch) | |
tree | 2f56e67b72ce6f0851f9760e28c964ba57edd01e /tools | |
parent | 880b90e09e2fc1b5e5a8d90af202546f584d2067 (diff) | |
download | external_llvm-199063ea37d8cc651a20ab00eef4326cd9331371.zip external_llvm-199063ea37d8cc651a20ab00eef4326cd9331371.tar.gz external_llvm-199063ea37d8cc651a20ab00eef4326cd9331371.tar.bz2 |
Opt does not need to initialize the Asm printer/parser
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166602 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/opt/opt.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index c78f97f..bac0d46 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -567,8 +567,6 @@ int main(int argc, char **argv) { InitializeAllTargets(); InitializeAllTargetMCs(); - InitializeAllAsmPrinters(); - InitializeAllAsmParsers(); // Initialize passes PassRegistry &Registry = *PassRegistry::getPassRegistry(); |