diff options
Diffstat (limited to 'lldb/source/Expression/IRInterpreter.cpp')
-rw-r--r-- | lldb/source/Expression/IRInterpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/IRInterpreter.cpp b/lldb/source/Expression/IRInterpreter.cpp index 5bb59a6d35a..8e3a33d6b7d 100644 --- a/lldb/source/Expression/IRInterpreter.cpp +++ b/lldb/source/Expression/IRInterpreter.cpp @@ -617,7 +617,7 @@ public: { // Special-case "this", "self", and "_cmd" - std::string name_str = value->getNameStr(); + std::string name_str = value->getName().str(); if (name_str == "this" || name_str == "self" || |