Chromium Code Reviews| Index: lib/IR/Module.cpp |
| diff --git a/lib/IR/Module.cpp b/lib/IR/Module.cpp |
| index f1b1f9a2acc877f094343c5c0bfbbe1919891346..0d2600f85b5e05adb297c9b880f2b5b0e732c033 100644 |
| --- a/lib/IR/Module.cpp |
| +++ b/lib/IR/Module.cpp |
| @@ -26,6 +26,7 @@ |
| #include "llvm/Support/Dwarf.h" |
| #include "llvm/Support/Path.h" |
| #include "llvm/Support/RandomNumberGenerator.h" |
| +#include "llvm/Support/raw_ostream.h" |
| #include <algorithm> |
| #include <cstdarg> |
| #include <cstdlib> |
| @@ -394,7 +395,9 @@ bool Module::Materialize(GlobalValue *GV, std::string *ErrInfo) { |
| if (!Materializer) |
| return false; |
| + errs() << "-> Module::Materialize\n"; |
|
jvoung (off chromium)
2014/12/01 23:23:50
I assume these are for debugging -- can these be r
Karl
2014/12/03 18:32:10
Reverted and removed from CL.
|
| std::error_code EC = Materializer->Materialize(GV); |
| + errs() << "<- Module::Materialize\n"; |
| if (!EC) |
| return false; |
| if (ErrInfo) |