diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2018-07-28 10:51:19 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2018-07-28 10:51:19 +0000 |
commit | eb11fae6d08f479c0799db45860a98af528fa6e7 (patch) | |
tree | 44d492a50c8c1a7eb8e2d17ea3360ec4d066f042 /lib/IR/DebugLoc.cpp | |
parent | b8a2042aa938069e862750553db0e4d82d25822c (diff) |
Notes
Diffstat (limited to 'lib/IR/DebugLoc.cpp')
-rw-r--r-- | lib/IR/DebugLoc.cpp | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/lib/IR/DebugLoc.cpp b/lib/IR/DebugLoc.cpp index 0a494119c3fe..36f3e179a2c0 100644 --- a/lib/IR/DebugLoc.cpp +++ b/lib/IR/DebugLoc.cpp @@ -9,6 +9,7 @@ #include "llvm/IR/DebugLoc.h" #include "LLVMContextImpl.h" +#include "llvm/Config/llvm-config.h" #include "llvm/IR/DebugInfo.h" using namespace llvm; @@ -99,19 +100,7 @@ DebugLoc DebugLoc::appendInlinedAt(DebugLoc DL, DILocation *InlinedAt, } #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) -LLVM_DUMP_METHOD void DebugLoc::dump() const { - if (!Loc) - return; - - dbgs() << getLine(); - if (getCol() != 0) - dbgs() << ',' << getCol(); - if (DebugLoc InlinedAtDL = DebugLoc(getInlinedAt())) { - dbgs() << " @ "; - InlinedAtDL.dump(); - } else - dbgs() << "\n"; -} +LLVM_DUMP_METHOD void DebugLoc::dump() const { print(dbgs()); } #endif void DebugLoc::print(raw_ostream &OS) const { |