diff options
author | Michael Kuperstein <michael.m.kuperstein@intel.com> | 2015-02-01 16:15:07 +0000 |
---|---|---|
committer | Michael Kuperstein <michael.m.kuperstein@intel.com> | 2015-02-01 16:15:07 +0000 |
commit | e86aa9a8a455f90bf3d6dc567b9e39b2e4510246 (patch) | |
tree | e727b02e6da5596b9d3cce6b6f77155337ae2aa3 /llvm/lib/Target/X86/X86MachineFunctionInfo.h | |
parent | e6698d5305a29a186e035ab737931a139d70bcd2 (diff) | |
download | bcm5719-llvm-e86aa9a8a455f90bf3d6dc567b9e39b2e4510246.tar.gz bcm5719-llvm-e86aa9a8a455f90bf3d6dc567b9e39b2e4510246.zip |
Revert r227728 due to bad line endings.
llvm-svn: 227746
Diffstat (limited to 'llvm/lib/Target/X86/X86MachineFunctionInfo.h')
-rw-r--r-- | llvm/lib/Target/X86/X86MachineFunctionInfo.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/llvm/lib/Target/X86/X86MachineFunctionInfo.h b/llvm/lib/Target/X86/X86MachineFunctionInfo.h index 9fd03a7059c..b23a744da68 100644 --- a/llvm/lib/Target/X86/X86MachineFunctionInfo.h +++ b/llvm/lib/Target/X86/X86MachineFunctionInfo.h @@ -77,9 +77,6 @@ class X86MachineFunctionInfo : public MachineFunctionInfo { unsigned ArgumentStackSize; /// NumLocalDynamics - Number of local-dynamic TLS accesses. unsigned NumLocalDynamics; - /// HasPushSequences - Keeps track of whether this function uses sequences - /// of pushes to pass function parameters. - bool HasPushSequences; private: /// ForwardedMustTailRegParms - A list of virtual and physical registers @@ -100,8 +97,7 @@ public: VarArgsGPOffset(0), VarArgsFPOffset(0), ArgumentStackSize(0), - NumLocalDynamics(0), - HasPushSequences(false) {} + NumLocalDynamics(0) {} explicit X86MachineFunctionInfo(MachineFunction &MF) : ForceFramePointer(false), @@ -117,15 +113,11 @@ public: VarArgsGPOffset(0), VarArgsFPOffset(0), ArgumentStackSize(0), - NumLocalDynamics(0), - HasPushSequences(false) {} + NumLocalDynamics(0) {} bool getForceFramePointer() const { return ForceFramePointer;} void setForceFramePointer(bool forceFP) { ForceFramePointer = forceFP; } - bool getHasPushSequences() const { return HasPushSequences; } - void setHasPushSequences(bool HasPush) { HasPushSequences = HasPush; } - bool getRestoreBasePointer() const { return RestoreBasePointerOffset!=0; } void setRestoreBasePointer(const MachineFunction *MF); int getRestoreBasePointerOffset() const {return RestoreBasePointerOffset; } |