about summary refs log tree commit diff homepage
path: root/lib/Module/KInstruction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Module/KInstruction.cpp')
-rw-r--r--lib/Module/KInstruction.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Module/KInstruction.cpp b/lib/Module/KInstruction.cpp
index c7c841a4..ee54b67c 100644
--- a/lib/Module/KInstruction.cpp
+++ b/lib/Module/KInstruction.cpp
@@ -21,6 +21,7 @@ KInstruction::~KInstruction() {
 
 std::string KInstruction::getSourceLocation() const {
   if (!info->file.empty())
-    return info->file + ":" + std::to_string(info->line);
+    return info->file + ":" + std::to_string(info->line) + " " +
+           std::to_string(info->column);
   else return "[no debug info]";
 }