diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-07-01 18:50:55 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-07-01 18:50:55 +0000 |
commit | 045f2635a5664c0659134e6a5f6c4dbda17550f3 (patch) | |
tree | d357bd5bdf353f4b9eb6ba50c249bb12c5cf5229 /lib/Target/PowerPC/PPCISelLowering.cpp | |
parent | f99c064f557505abbb4a9ab4f60a477063f33728 (diff) | |
download | external_llvm-045f2635a5664c0659134e6a5f6c4dbda17550f3.zip external_llvm-045f2635a5664c0659134e6a5f6c4dbda17550f3.tar.gz external_llvm-045f2635a5664c0659134e6a5f6c4dbda17550f3.tar.bz2 |
Update comments to make it clear that the function alignment is the Log2 of the
bytes and not bytes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74624 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCISelLowering.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCISelLowering.cpp b/lib/Target/PowerPC/PPCISelLowering.cpp index cf17599..50d16b1 100644 --- a/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/lib/Target/PowerPC/PPCISelLowering.cpp @@ -432,7 +432,7 @@ MVT PPCTargetLowering::getSetCCResultType(MVT VT) const { return MVT::i32; } -/// getFunctionAlignment - Return the function alignment. +/// getFunctionAlignment - Return the Log2 alignment of this function. unsigned PPCTargetLowering::getFunctionAlignment(const Function *F) const { if (getTargetMachine().getSubtarget<PPCSubtarget>().isDarwin()) return F->hasFnAttr(Attribute::OptimizeForSize) ? 2 : 4; |