Fix X86MachineFunctionInfo's doxygen comment.
authorDan Gohman <gohman@apple.com>
Wed, 15 Apr 2009 01:20:18 +0000 (01:20 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 15 Apr 2009 01:20:18 +0000 (01:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69127 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86MachineFunctionInfo.h

index df79520ed3559ccb037da1b9569e342606f094c2..8a5ac2c9a85c23d311ab69bdee6e269d466492a2 100644 (file)
@@ -24,8 +24,8 @@ enum NameDecorationStyle {
   FastCall
 };
   
-/// X86MachineFunctionInfo - This class is derived from MachineFunction private
-/// X86 target-specific information for each MachineFunction.
+/// X86MachineFunctionInfo - This class is derived from MachineFunction and
+/// contains private X86 target-specific information for each MachineFunction.
 class X86MachineFunctionInfo : public MachineFunctionInfo {
   /// ForceFramePointer - True if the function is required to use of frame
   /// pointer for reasons other than it containing dynamic allocation or 
@@ -106,6 +106,7 @@ public:
   unsigned getGlobalBaseReg() const { return GlobalBaseReg; }
   void setGlobalBaseReg(unsigned Reg) { GlobalBaseReg = Reg; }
 };
+
 } // End llvm namespace
 
 #endif