From c61291609d5d2044fa9f9fdcb1fe22cfd7c998e2 Mon Sep 17 00:00:00 2001 From: Hal Finkel Date: Mon, 17 Oct 2011 18:53:03 +0000 Subject: [PATCH] Revert change to function alignment b/c existing logic was fine git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142224 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/PowerPC/PPCISelLowering.cpp | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/lib/Target/PowerPC/PPCISelLowering.cpp b/lib/Target/PowerPC/PPCISelLowering.cpp index dcc05683682..d6b8a9ee93c 100644 --- a/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/lib/Target/PowerPC/PPCISelLowering.cpp @@ -402,16 +402,9 @@ PPCTargetLowering::PPCTargetLowering(PPCTargetMachine &TM) setLibcallName(RTLIB::EXP2_PPCF128, "exp2l$LDBL128"); } - if (PPCSubTarget.isBookE()) { - // Book E: Instructions are always four bytes long and word-aligned. - setMinFunctionAlignment(4); - setPrefFunctionAlignment(8); - } - else { - setMinFunctionAlignment(2); - if (PPCSubTarget.isDarwin()) - setPrefFunctionAlignment(4); - } + setMinFunctionAlignment(2); + if (PPCSubTarget.isDarwin()) + setPrefFunctionAlignment(4); setInsertFencesForAtomic(true);