aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTorok Edwin <edwintorok@gmail.com>2009-12-10 10:01:47 +0000
committerTorok Edwin <edwintorok@gmail.com>2009-12-10 10:01:47 +0000
commitf05e45eb373a47054cd569e9bf727f71109be382 (patch)
tree96347feb03aecc5e31331772255b7f75d417081b /lib
parent3472ae1e7b0f38c4ac0802ffc2900f71a5470c3b (diff)
downloadexternal_llvm-f05e45eb373a47054cd569e9bf727f71109be382.zip
external_llvm-f05e45eb373a47054cd569e9bf727f71109be382.tar.gz
external_llvm-f05e45eb373a47054cd569e9bf727f71109be382.tar.bz2
Comparing std::string with NULL is a bad idea, so just check whether its empty.
This code was crashing always with oprofile enabled, since it tried to create a StringRef out of NULL, which run strlen on NULL. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91046 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp b/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp
index 076e5a0..52a8f71 100644
--- a/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp
+++ b/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp
@@ -76,7 +76,7 @@ class FilenameCache {
public:
const char *getFilename(MDNode *Scope) {
std::string &Filename = Filenames[Scope];
- if (Filename == NULL) {
+ if (Filename.empty()) {
DIScope S(Scope);
Filename = S.getFilename();
}