aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetFrameInfo.h
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2005-04-22 03:46:24 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2005-04-22 03:46:24 +0000
commit00876a2808f1a8061f7e0852c7949fc5074ecb04 (patch)
tree1963463fa0b10be10845d9a8801a7271f34c5bcf /include/llvm/Target/TargetFrameInfo.h
parent21bbf8d0222383cbba01191bd046736c40e25c9a (diff)
downloadexternal_llvm-00876a2808f1a8061f7e0852c7949fc5074ecb04.zip
external_llvm-00876a2808f1a8061f7e0852c7949fc5074ecb04.tar.gz
external_llvm-00876a2808f1a8061f7e0852c7949fc5074ecb04.tar.bz2
Convert tabs to spaces
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21438 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetFrameInfo.h')
-rw-r--r--include/llvm/Target/TargetFrameInfo.h25
1 files changed, 11 insertions, 14 deletions
diff --git a/include/llvm/Target/TargetFrameInfo.h b/include/llvm/Target/TargetFrameInfo.h
index fc7fa04..6097d8c 100644
--- a/include/llvm/Target/TargetFrameInfo.h
+++ b/include/llvm/Target/TargetFrameInfo.h
@@ -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