[llvm-commits] [llvm] r119096 - /llvm/trunk/lib/Target/PowerPC/PPCFrameInfo.h
Anton Korobeynikov
asl at math.spbu.ru
Sun Nov 14 16:06:06 PST 2010
Author: asl
Date: Sun Nov 14 18:06:05 2010
New Revision: 119096
URL: http://llvm.org/viewvc/llvm-project?rev=119096&view=rev
Log:
Whitespace cleanup
Modified:
llvm/trunk/lib/Target/PowerPC/PPCFrameInfo.h
Modified: llvm/trunk/lib/Target/PowerPC/PPCFrameInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PowerPC/PPCFrameInfo.h?rev=119096&r1=119095&r2=119096&view=diff
==============================================================================
--- llvm/trunk/lib/Target/PowerPC/PPCFrameInfo.h (original)
+++ llvm/trunk/lib/Target/PowerPC/PPCFrameInfo.h Sun Nov 14 18:06:05 2010
@@ -48,17 +48,17 @@
// 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 @@
// 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;
More information about the llvm-commits
mailing list