Convert tabs to spaces
[oota-llvm.git] / include / llvm / Target / TargetFrameInfo.h
index fc7fa042291771a674f4f8d0bada8438db2a80c9..6097d8c8fc636089f278365f0997457a1ca548b0 100644 (file)
@@ -81,26 +81,23 @@ public:
 
   // This method adjusts a stack offset to meet alignment rules of target.
   virtual int adjustAlignment(int unalignedOffset, bool growUp,
-                             unsigned align) const;
+                              unsigned align) const;
 
   // These methods compute offsets using the frame contents for a particular
   // function.  The frame contents are obtained from the MachineFunction object
   // for the given function.  The rest must be implemented by the
   // machine-specific subclass.
   //
-  virtual int getIncomingArgOffset              (MachineFunction& mcInfo,
-                                                unsigned argNum) const;
-  virtual int getOutgoingArgOffset              (MachineFunction& mcInfo,
-                                                unsigned argNum) const;
-
-  virtual int getFirstAutomaticVarOffset        (MachineFunction& mcInfo,
-                                                 bool& growUp) const;
-  virtual int getRegSpillAreaOffset             (MachineFunction& mcInfo,
-                                                 bool& growUp) const;
-  virtual int getTmpAreaOffset                  (MachineFunction& mcInfo,
-                                                 bool& growUp) const;
-  virtual int getDynamicAreaOffset              (MachineFunction& mcInfo,
-                                                 bool& growUp) const;
+  virtual int getIncomingArgOffset(MachineFunction& mcInfo,
+                                   unsigned argNum) const;
+  virtual int getOutgoingArgOffset(MachineFunction& mcInfo,
+                                   unsigned argNum) const;
+  virtual int getFirstAutomaticVarOffset(MachineFunction& mcInfo,
+                                         bool& growUp) const;
+  virtual int getRegSpillAreaOffset(MachineFunction& mcInfo,
+                                    bool& growUp) const;
+  virtual int getTmpAreaOffset(MachineFunction& mcInfo, bool& growUp) const;
+  virtual int getDynamicAreaOffset(MachineFunction& mcInfo, bool& growUp) const;
 };
 
 } // End llvm namespace