aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86MachineFunctionInfo.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-17 17:21:52 +0000
committerChris Lattner <sabre@nondot.org>2007-04-17 17:21:52 +0000
commitd15dff24c6a3712298e16453eb8d09c4404563a5 (patch)
treef19515b38f523311416c0323dad8d3540a5c5ae3 /lib/Target/X86/X86MachineFunctionInfo.h
parent57fc00d5cf47343ba762493b8781ca0b14489c35 (diff)
downloadexternal_llvm-d15dff24c6a3712298e16453eb8d09c4404563a5.tar.gz
external_llvm-d15dff24c6a3712298e16453eb8d09c4404563a5.tar.bz2
external_llvm-d15dff24c6a3712298e16453eb8d09c4404563a5.zip
rename X86FunctionInfo to X86MachineFunctionInfo to match the header file
it is defined in. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36196 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86MachineFunctionInfo.h')
-rw-r--r--lib/Target/X86/X86MachineFunctionInfo.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/Target/X86/X86MachineFunctionInfo.h b/lib/Target/X86/X86MachineFunctionInfo.h
index 4ec3ba3fd3..b8cf1c416d 100644
--- a/lib/Target/X86/X86MachineFunctionInfo.h
+++ b/lib/Target/X86/X86MachineFunctionInfo.h
@@ -24,9 +24,9 @@ enum NameDecorationStyle {
FastCall
};
-/// X86FunctionInfo - This class is derived from MachineFunction private
+/// X86MachineFunctionInfo - This class is derived from MachineFunction private
/// X86 target-specific information for each MachineFunction.
-class X86FunctionInfo : public MachineFunctionInfo {
+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
/// that FP eliminatation is turned off. For example, Cygwin main function
@@ -42,13 +42,13 @@ class X86FunctionInfo : public MachineFunctionInfo {
NameDecorationStyle DecorationStyle;
public:
- X86FunctionInfo() : ForceFramePointer(false),
- BytesToPopOnReturn(0),
- DecorationStyle(None) {}
+ X86MachineFunctionInfo() : ForceFramePointer(false),
+ BytesToPopOnReturn(0),
+ DecorationStyle(None) {}
- X86FunctionInfo(MachineFunction &MF) : ForceFramePointer(false),
- BytesToPopOnReturn(0),
- DecorationStyle(None) {}
+ X86MachineFunctionInfo(MachineFunction &MF) : ForceFramePointer(false),
+ BytesToPopOnReturn(0),
+ DecorationStyle(None) {}
bool getForceFramePointer() const { return ForceFramePointer;}
void setForceFramePointer(bool forceFP) { ForceFramePointer = forceFP; }