diff options
author | Simon Dardis <simon.dardis@imgtec.com> | 2017-02-08 19:03:46 +0000 |
---|---|---|
committer | Simon Dardis <simon.dardis@imgtec.com> | 2017-02-08 19:03:46 +0000 |
commit | 2e8cdbd79530087f1f1fc4261eeb629e8dfb7a6c (patch) | |
tree | 0e48022aef685aeb0f5afcae1ba8a70f22f43a9d /llvm/lib/CodeGen/AsmPrinter/DIE.cpp | |
parent | 696e27e1ecfc912017017e13a0d7bd503c5419f7 (diff) | |
download | bcm5719-llvm-2e8cdbd79530087f1f1fc4261eeb629e8dfb7a6c.tar.gz bcm5719-llvm-2e8cdbd79530087f1f1fc4261eeb629e8dfb7a6c.zip |
[DebugInfo] Rename EmitDebugValue to EmitDebugThreadLocal (NFC)
As pointed out by David Blaikie in the post commit review of
r292624, EmitDebugValue should be called EmitDebugThreadLocal.
llvm-svn: 294500
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DIE.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DIE.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp index ae1a08374ad..bb008ec557f 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp @@ -489,7 +489,7 @@ void DIEInteger::print(raw_ostream &O) const { /// EmitValue - Emit expression value. /// void DIEExpr::EmitValue(const AsmPrinter *AP, dwarf::Form Form) const { - AP->EmitDebugValue(Expr, SizeOf(AP, Form)); + AP->EmitDebugThreadLocal(Expr, SizeOf(AP, Form)); } /// SizeOf - Determine size of expression value in bytes. |