From bc19466912f4074bc0dc20d389fb1775a674dfd6 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 25 Apr 2003 06:06:13 +0000 Subject: [PATCH] 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 --- tools/llc/llc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.40.0