aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/llc/llc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp
index fa4c0d1fe2..f671a44959 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.