Rename DescriptionString -> DataLayoutString as it matches the actual

use of the string.

llvm-svn: 244178
This commit is contained in:
Eric Christopher
2015-08-05 23:48:05 +00:00
parent d46369d8b3
commit 964a5f3b5c
7 changed files with 96 additions and 98 deletions

View File

@@ -98,7 +98,7 @@ namespace {
Ctx = &Context;
M->setTargetTriple(Ctx->getTargetInfo().getTriple().getTriple());
M->setDataLayout(Ctx->getTargetInfo().getTargetDescription());
M->setDataLayout(Ctx->getTargetInfo().getDataLayoutString());
Builder.reset(new CodeGen::CodeGenModule(Context, HeaderSearchOpts,
PreprocessorOpts, CodeGenOpts,
*M, Diags, CoverageInfo));