summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86MachineFunctionInfo.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-04-15 01:20:18 +0000
committerDan Gohman <gohman@apple.com>2009-04-15 01:20:18 +0000
commit6288b93f00e8747eaff69f2954a76efc587e7b55 (patch)
tree859cee280cd0bbc5a0a120326289a0eff339b7dc /lib/Target/X86/X86MachineFunctionInfo.h
parent33f1c68cba4e905fdd2bf7d2848c52052d46fbff (diff)
downloadllvm-6288b93f00e8747eaff69f2954a76efc587e7b55.tar.gz
llvm-6288b93f00e8747eaff69f2954a76efc587e7b55.tar.bz2
llvm-6288b93f00e8747eaff69f2954a76efc587e7b55.tar.xz
Fix X86MachineFunctionInfo's doxygen comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69127 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86MachineFunctionInfo.h')
-rw-r--r--lib/Target/X86/X86MachineFunctionInfo.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Target/X86/X86MachineFunctionInfo.h b/lib/Target/X86/X86MachineFunctionInfo.h
index df79520ed3..8a5ac2c9a8 100644
--- a/lib/Target/X86/X86MachineFunctionInfo.h
+++ b/lib/Target/X86/X86MachineFunctionInfo.h
@@ -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