Minor cleanups.
authorChris Lattner <sabre@nondot.org>
Mon, 2 Jun 2003 22:57:41 +0000 (22:57 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 2 Jun 2003 22:57:41 +0000 (22:57 +0000)
This pass should be moved to lib/Target/Sparc since it's sparc specific
It also needs a file comment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6553 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/Mapping/FInfo.cpp

index 504baec154fa4b390d1ca769308550f413840a68..e72303d21a7e3901ac46286dd616b757177af10f 100755 (executable)
@@ -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);
+                       
   };
 }