diff options
Diffstat (limited to 'tools/llc/llc.cpp')
-rw-r--r-- | tools/llc/llc.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index f671a44959..85e4150141 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -184,8 +184,7 @@ main(int argc, char **argv) // Build up all of the passes that we want to do to the module... PassManager Passes; - Passes.add(new TargetData("llc", TD.isLittleEndian(), TD.getSubWordDataSize(), - TD.getIntegerRegSize(), TD.getPointerSize(), + Passes.add(new TargetData("llc", TD.isLittleEndian(), TD.getPointerSize(), TD.getPointerAlignment(), TD.getDoubleAlignment())); // Create a new optimization pass for each one specified on the command line |