diff options
author | Eric Christopher <echristo@gmail.com> | 2015-08-05 23:48:05 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-08-05 23:48:05 +0000 |
commit | 964a5f3b5c65ba72d4f5e57cba65582c39bdae70 (patch) | |
tree | 93db0eb58a1bac242b91fd45d39104f94c6da879 /clang/lib/CodeGen/CodeGenAction.cpp | |
parent | d46369d8b3ac989855f76798d25feac790388870 (diff) | |
download | bcm5719-llvm-964a5f3b5c65ba72d4f5e57cba65582c39bdae70.tar.gz bcm5719-llvm-964a5f3b5c65ba72d4f5e57cba65582c39bdae70.zip |
Rename DescriptionString -> DataLayoutString as it matches the actual
use of the string.
llvm-svn: 244178
Diffstat (limited to 'clang/lib/CodeGen/CodeGenAction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenAction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenAction.cpp b/clang/lib/CodeGen/CodeGenAction.cpp index 8f5ee6fde0a..d97a64ec24b 100644 --- a/clang/lib/CodeGen/CodeGenAction.cpp +++ b/clang/lib/CodeGen/CodeGenAction.cpp @@ -180,7 +180,7 @@ namespace clang { Ctx.setDiagnosticHandler(DiagnosticHandler, this); EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts, - C.getTargetInfo().getTargetDescription(), + C.getTargetInfo().getDataLayoutString(), TheModule.get(), Action, AsmOutStream); Ctx.setInlineAsmDiagnosticHandler(OldHandler, OldContext); @@ -734,7 +734,7 @@ void CodeGenAction::ExecuteAction() { LLVMContext &Ctx = TheModule->getContext(); Ctx.setInlineAsmDiagnosticHandler(BitcodeInlineAsmDiagHandler); EmitBackendOutput(CI.getDiagnostics(), CI.getCodeGenOpts(), TargetOpts, - CI.getLangOpts(), CI.getTarget().getTargetDescription(), + CI.getLangOpts(), CI.getTarget().getDataLayoutString(), TheModule.get(), BA, OS); return; } |