o << getType() << " " << getName();
}
+// Value::dump - allow easy printing of Values from the debugger.
+// Located here because so much of the needed functionality is here.
void Value::dump() const { print(std::cerr); }
+
+// Type::dump - allow easy printing of Values from the debugger.
+// Located here because so much of the needed functionality is here.
void Type::dump() const { print(std::cerr); }
//===----------------------------------------------------------------------===//