| Index: src/compiler/linkage.cc
|
| diff --git a/src/compiler/linkage.cc b/src/compiler/linkage.cc
|
| index 89786dcc4a813ba1611553f00df444292f661d92..82dd440cd6708f6c8707870a3825cc1a000e5df3 100644
|
| --- a/src/compiler/linkage.cc
|
| +++ b/src/compiler/linkage.cc
|
| @@ -15,7 +15,7 @@ namespace internal {
|
| namespace compiler {
|
|
|
|
|
| -OStream& operator<<(OStream& os, const CallDescriptor::Kind& k) {
|
| +std::ostream& operator<<(std::ostream& os, const CallDescriptor::Kind& k) {
|
| switch (k) {
|
| case CallDescriptor::kCallCodeObject:
|
| os << "Code";
|
| @@ -31,7 +31,7 @@ OStream& operator<<(OStream& os, const CallDescriptor::Kind& k) {
|
| }
|
|
|
|
|
| -OStream& operator<<(OStream& os, const CallDescriptor& d) {
|
| +std::ostream& operator<<(std::ostream& os, const CallDescriptor& d) {
|
| // TODO(svenpanne) Output properties etc. and be less cryptic.
|
| return os << d.kind() << ":" << d.debug_name() << ":r" << d.ReturnCount()
|
| << "j" << d.JSParameterCount() << "i" << d.InputCount() << "f"
|
|
|