Fix bad indentation and 80-col violation.

llvm-svn: 75686
This commit is contained in:
Bob Wilson 2009-07-14 21:45:58 +00:00
parent cbe475dfe8
commit a9111b9f97
1 changed files with 2 additions and 1 deletions

View File

@ -77,7 +77,8 @@ public:
void dump() const;
};
inline std::ostream &operator<<(std::ostream &O, const ARMConstantPoolValue &V) {
inline std::ostream &operator<<(std::ostream &O,
const ARMConstantPoolValue &V) {
V.print(O);
return O;
}