| Index: src/IceGlobalContext.h
|
| diff --git a/src/IceGlobalContext.h b/src/IceGlobalContext.h
|
| index 3998b5301493157a71ce435cc0b95339e023c06b..fe50b53bd20a35cf4d4ea5efedf3bb2c07a847df 100644
|
| --- a/src/IceGlobalContext.h
|
| +++ b/src/IceGlobalContext.h
|
| @@ -47,16 +47,7 @@ public:
|
| void updateFrameBytes(uint32_t Bytes) { FrameBytes += Bytes; }
|
| void updateSpills() { ++Spills; }
|
| void updateFills() { ++Fills; }
|
| - void dump(const IceString &Name, Ostream &Str) {
|
| - if (!ALLOW_DUMP)
|
| - return;
|
| - Str << "|" << Name << "|Inst Count |" << InstructionsEmitted << "\n";
|
| - Str << "|" << Name << "|Regs Saved |" << RegistersSaved << "\n";
|
| - Str << "|" << Name << "|Frame Bytes |" << FrameBytes << "\n";
|
| - Str << "|" << Name << "|Spills |" << Spills << "\n";
|
| - Str << "|" << Name << "|Fills |" << Fills << "\n";
|
| - Str << "|" << Name << "|Spills+Fills|" << Spills + Fills << "\n";
|
| - }
|
| + void dump(const IceString &Name, Ostream &Str);
|
|
|
| private:
|
| uint32_t InstructionsEmitted;
|
|
|