From 2ad2adf8cb9dbcbd7909d74c60b87fb5f5930a3e Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Fri, 23 Jul 2004 01:11:46 +0000 Subject: [PATCH] Bool alignment on MacOSX/PowerPC is 4 bytes. llvm-svn: 15122 --- lib/Target/PowerPC/PowerPCTargetMachine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/PowerPC/PowerPCTargetMachine.cpp b/lib/Target/PowerPC/PowerPCTargetMachine.cpp index cdeb3fc15cf..0ca5769040c 100644 --- a/lib/Target/PowerPC/PowerPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PowerPCTargetMachine.cpp @@ -52,7 +52,7 @@ unsigned PowerPCTargetMachine::getModuleMatchQuality(const Module &M) { /// PowerPCTargetMachine::PowerPCTargetMachine(const Module &M, IntrinsicLowering *IL) - : TargetMachine("PowerPC", IL, false, 4, 4, 4, 4, 4, 4, 2, 1), + : TargetMachine("PowerPC", IL, false, 4, 4, 4, 4, 4, 4, 2, 1, 4), FrameInfo(TargetFrameInfo::StackGrowsDown, 16, -4), JITInfo(*this) { }