1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Fix llc's -print-before=pass and -print-after=pass.

llvm-svn: 159227
This commit is contained in:
Rafael Espindola 2012-06-26 21:33:36 +00:00
parent 6be46b7b4c
commit 51d0d15c23
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,6 @@
; RUN: not llc --help-hidden |& FileCheck %s
; CHECK: -print-after
; CHECK-NOT: -print-after-all
; CHECK: =simple-register-coalescing
; CHECK: -print-after-all

View File

@ -353,6 +353,10 @@ int main(int argc, char **argv) {
InitializeAllAsmPrinters();
InitializeAllAsmParsers();
// Initialize codegen so that the -print-after and -print-before options
// work.
initializeCodeGen(*PassRegistry::getPassRegistry());
// Register the target printer for --version.
cl::AddExtraVersionPrinter(TargetRegistry::printRegisteredTargetsForVersion);