summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/PowerPC
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2010-11-15 00:06:05 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2010-11-15 00:06:05 +0000
commita5ab8f10e4f6b47afd697ea024619c484f2568c2 (patch)
treebfd5a1505eeed0e5b57768f7fca2d84381525cd7 /llvm/lib/Target/PowerPC
parentc4d6fd5b03fb0ecf8d3f54d943442ccd77c3058c (diff)
downloadbcm5719-llvm-a5ab8f10e4f6b47afd697ea024619c484f2568c2.tar.gz
bcm5719-llvm-a5ab8f10e4f6b47afd697ea024619c484f2568c2.zip
Whitespace cleanup
llvm-svn: 119096
Diffstat (limited to 'llvm/lib/Target/PowerPC')
-rw-r--r--llvm/lib/Target/PowerPC/PPCFrameInfo.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCFrameInfo.h b/llvm/lib/Target/PowerPC/PPCFrameInfo.h
index 7587b035981..2551d6fc2e1 100644
--- a/llvm/lib/Target/PowerPC/PPCFrameInfo.h
+++ b/llvm/lib/Target/PowerPC/PPCFrameInfo.h
@@ -48,17 +48,17 @@ public:
// around that does use it, and that needs to continue to work.
if (isDarwinABI)
return isPPC64 ? -8U : -4U;
-
+
// SVR4 ABI: First slot in the general register save area.
return isPPC64 ? -8U : -4U;
}
-
+
/// getLinkageSize - Return the size of the PowerPC ABI linkage area.
///
static unsigned getLinkageSize(bool isPPC64, bool isDarwinABI) {
if (isDarwinABI || isPPC64)
return 6 * (isPPC64 ? 8 : 4);
-
+
// SVR4 ABI:
return 8;
}
@@ -74,7 +74,7 @@ public:
// least enough stack space for the caller to store the 8 GPRs.
if (isDarwinABI || isPPC64)
return 8 * (isPPC64 ? 8 : 4);
-
+
// 32-bit SVR4 ABI:
// There is no default stack allocated for the 8 first GPR arguments.
return 0;
OpenPOWER on IntegriCloud