From: Chris Lattner Date: Fri, 25 Apr 2003 06:06:13 +0000 (+0000) Subject: Make sure to copy double alignment as well X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=bc19466912f4074bc0dc20d389fb1775a674dfd6;p=oota-llvm.git Make sure to copy double alignment as well git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5936 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index fa4c0d1fe29..f671a449592 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -186,7 +186,7 @@ main(int argc, char **argv) Passes.add(new TargetData("llc", TD.isLittleEndian(), TD.getSubWordDataSize(), TD.getIntegerRegSize(), TD.getPointerSize(), - TD.getPointerAlignment())); + TD.getPointerAlignment(), TD.getDoubleAlignment())); // Create a new optimization pass for each one specified on the command line // Deal specially with tracing passes, which must be run differently than opt.