Index: src/compiler.cc |
diff --git a/src/compiler.cc b/src/compiler.cc |
index 307b3b0e428493887dbdadf28cd67c6d1d7444c4..92d7728b599708761bf7e58f209f916f46680c4b 100644 |
--- a/src/compiler.cc |
+++ b/src/compiler.cc |
@@ -37,16 +37,6 @@ |
namespace v8 { |
namespace internal { |
-std::ostream& operator<<(std::ostream& os, const SourcePosition& p) { |
- if (p.IsUnknown()) { |
- return os << "<?>"; |
- } else if (FLAG_hydrogen_track_positions) { |
- return os << "<" << p.inlining_id() << ":" << p.position() << ">"; |
- } else { |
- return os << "<0:" << p.raw() << ">"; |
- } |
-} |
- |
#define PARSE_INFO_GETTER(type, name) \ |
type CompilationInfo::name() const { \ |