aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Mips/MipsMachineFunction.h
diff options
context:
space:
mode:
authorJia Liu <proljc@gmail.com>2012-02-28 07:46:26 +0000
committerJia Liu <proljc@gmail.com>2012-02-28 07:46:26 +0000
commitbb481f882093fb738d2bb15610c79364bada5496 (patch)
treeb7576c5dfdd780ee43fd00ca3fd5a76a608fa7bd /lib/Target/Mips/MipsMachineFunction.h
parentec52aaa12f57896fc806e849fa21a61603050ac4 (diff)
downloadexternal_llvm-bb481f882093fb738d2bb15610c79364bada5496.zip
external_llvm-bb481f882093fb738d2bb15610c79364bada5496.tar.gz
external_llvm-bb481f882093fb738d2bb15610c79364bada5496.tar.bz2
remove blanks, and some code format
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151625 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsMachineFunction.h')
-rw-r--r--lib/Target/Mips/MipsMachineFunction.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/Mips/MipsMachineFunction.h b/lib/Target/Mips/MipsMachineFunction.h
index a6e4028..57ff069 100644
--- a/lib/Target/Mips/MipsMachineFunction.h
+++ b/lib/Target/Mips/MipsMachineFunction.h
@@ -44,10 +44,10 @@ class MipsFunctionInfo : public MachineFunctionInfo {
// InArgFIRange: Range of indices of all frame objects created during call to
// LowerFormalArguments.
// OutArgFIRange: Range of indices of all frame objects created during call to
- // LowerCall except for the frame object for restoring $gp.
+ // LowerCall except for the frame object for restoring $gp.
std::pair<int, int> InArgFIRange, OutArgFIRange;
- int GPFI; // Index of the frame object for restoring $gp
- mutable int DynAllocFI; // Frame index of dynamically allocated stack area.
+ int GPFI; // Index of the frame object for restoring $gp
+ mutable int DynAllocFI; // Frame index of dynamically allocated stack area.
unsigned MaxCallFrameSize;
public:
@@ -63,7 +63,7 @@ public:
}
void setLastInArgFI(int FI) { InArgFIRange.second = FI; }
- bool isOutArgFI(int FI) const {
+ bool isOutArgFI(int FI) const {
return FI <= OutArgFIRange.first && FI >= OutArgFIRange.second;
}
void extendOutArgFIRange(int FirstFI, int LastFI) {