diff options
author | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2017-06-23 18:47:55 +0000 |
---|---|---|
committer | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2017-06-23 18:47:55 +0000 |
commit | c0a102f505c8207d8fa6f586edcc1c00eecd8b5b (patch) | |
tree | e27339392f3546e154b83090b9bdecc87865316b /llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp | |
parent | 3de6bad65f5264fb161bc0d1c54109a003d04326 (diff) | |
download | bcm5719-llvm-c0a102f505c8207d8fa6f586edcc1c00eecd8b5b.tar.gz bcm5719-llvm-c0a102f505c8207d8fa6f586edcc1c00eecd8b5b.zip |
[Hexagon] Remove call to printAndVerify from HexagonPassConfig
It causes an extra pass of the machine verifier to be added to the pass
manager, and causes test/CodeGen/Generic/llc-start-stop.ll to fail.
llvm-svn: 306140
Diffstat (limited to 'llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp b/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp index e507a797871..031a1bdefaf 100644 --- a/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp +++ b/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp @@ -291,7 +291,6 @@ bool HexagonPassConfig::addInstSelector() { if (EnableBitSimplify) addPass(createHexagonBitSimplify()); addPass(createHexagonPeephole()); - printAndVerify("After hexagon peephole pass"); // Constant propagation. if (!DisableHCP) { addPass(createHexagonConstPropagationPass()); |