aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/Mapping/FInfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/CodeGen/Mapping/FInfo.cpp')
-rwxr-xr-xlib/CodeGen/Mapping/FInfo.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/CodeGen/Mapping/FInfo.cpp b/lib/CodeGen/Mapping/FInfo.cpp
index 504baec154..e72303d21a 100755
--- a/lib/CodeGen/Mapping/FInfo.cpp
+++ b/lib/CodeGen/Mapping/FInfo.cpp
@@ -2,19 +2,17 @@
#include "llvm/Pass.h"
#include "llvm/Module.h"
-
namespace {
class FunctionInfo : public Pass {
std::ostream &Out;
public:
FunctionInfo(std::ostream &out) : Out(out){}
- const char* getPassName() const{return "Sparc FunctionInfo";}
+ const char* getPassName() const{ return "Sparc FunctionInfo"; }
bool run(Module &M);
private:
- void FunctionInfo::writePrologue(const char *area,
- const char *label);
- void FunctionInfo::writeEpilogue(const char *area,
- const char *label);
+ void writePrologue(const char *area, const char *label);
+ void writeEpilogue(const char *area, const char *label);
+
};
}