diff options
author | Sean Callanan <scallanan@apple.com> | 2011-11-19 02:54:21 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2011-11-19 02:54:21 +0000 |
commit | 7f27d6044e5c31ec53ecdeb5faa666d7a78c4e94 (patch) | |
tree | 6fed56e46e356ee318957cff19eb6494438040c0 /lldb/source/Expression/IRInterpreter.cpp | |
parent | 3b608422e8ff9e50d05f5f6c1b4760f9fc339aa0 (diff) | |
download | bcm5719-llvm-7f27d6044e5c31ec53ecdeb5faa666d7a78c4e94.tar.gz bcm5719-llvm-7f27d6044e5c31ec53ecdeb5faa666d7a78c4e94.zip |
Pulled in a new revision of LLVM/Clang and added
several patches. These patches fix a problem
where templated types were not being completed the
first time they were used, and fix a variety of
minor issues I discovered while fixing that problem.
One of the previous local patches was resolved in
the most recent Clang, so I removed it. The others
will be removed in due course.
llvm-svn: 144984
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" || |