[llvm-commits] [llvm] r69127 - /llvm/trunk/lib/Target/X86/X86MachineFunctionInfo.h
Dan Gohman
gohman at apple.com
Tue Apr 14 18:20:18 PDT 2009
Author: djg
Date: Tue Apr 14 20:20:18 2009
New Revision: 69127
URL: http://llvm.org/viewvc/llvm-project?rev=69127&view=rev
Log:
Fix X86MachineFunctionInfo's doxygen comment.
Modified:
llvm/trunk/lib/Target/X86/X86MachineFunctionInfo.h
Modified: llvm/trunk/lib/Target/X86/X86MachineFunctionInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86MachineFunctionInfo.h?rev=69127&r1=69126&r2=69127&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86MachineFunctionInfo.h (original)
+++ llvm/trunk/lib/Target/X86/X86MachineFunctionInfo.h Tue Apr 14 20:20:18 2009
@@ -24,8 +24,8 @@
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 @@
unsigned getGlobalBaseReg() const { return GlobalBaseReg; }
void setGlobalBaseReg(unsigned Reg) { GlobalBaseReg = Reg; }
};
+
} // End llvm namespace
#endif
More information about the llvm-commits
mailing list