diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2018-05-15 21:22:31 +0100 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2018-05-22 11:08:24 +0100 |
commit | cf33f833c9c8dd28b44a3177ef0b759e0f46cb86 (patch) | |
tree | 58aa058d69300b08de565061a43d4e4d349fb8a6 /lib/Module | |
parent | 7e17fe3191fb40360c88d28f1491aae203f0aa03 (diff) | |
download | klee-cf33f833c9c8dd28b44a3177ef0b759e0f46cb86.tar.gz |
Simplified printFileLine by using std::to_string, and removed unneeded version that takes an argument a stream
Diffstat (limited to 'lib/Module')
-rw-r--r-- | lib/Module/KInstruction.cpp | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/lib/Module/KInstruction.cpp b/lib/Module/KInstruction.cpp index d1e6c470..c7c841a4 100644 --- a/lib/Module/KInstruction.cpp +++ b/lib/Module/KInstruction.cpp @@ -8,7 +8,6 @@ //===----------------------------------------------------------------------===// #include "klee/Internal/Module/KInstruction.h" -#include "llvm/Support/raw_ostream.h" #include <string> using namespace llvm; @@ -20,15 +19,8 @@ KInstruction::~KInstruction() { delete[] operands; } -void KInstruction::printFileLine(llvm::raw_ostream &debugFile) const { - if (info->file != "") - debugFile << info->file << ":" << info->line; - else debugFile << "[no debug info]"; -} - -std::string KInstruction::printFileLine() const { - std::string str; - llvm::raw_string_ostream oss(str); - printFileLine(oss); - return oss.str(); +std::string KInstruction::getSourceLocation() const { + if (!info->file.empty()) + return info->file + ":" + std::to_string(info->line); + else return "[no debug info]"; } |