diff options
Diffstat (limited to 'lldb/source/Core/ValueObject.cpp')
| -rw-r--r-- | lldb/source/Core/ValueObject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index 80adcc3ad7e..4e5e921f287 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -1258,9 +1258,9 @@ ValueObject::GetValueAsCString (lldb::Format format, // put custom bytes to display in this DataExtractor to override the default value logic lldb_private::DataExtractor special_format_data; clang::ASTContext* ast = GetClangAST(); - Flags type_flags(ClangASTContext::GetTypeInfo(clang_type, ast, NULL)); if (format == eFormatCString) { + Flags type_flags(ClangASTContext::GetTypeInfo(clang_type, ast, NULL)); if (type_flags.Test(ClangASTContext::eTypeIsPointer) && !type_flags.Test(ClangASTContext::eTypeIsObjC)) { // if we are dumping a pointer as a c-string, get the pointee data as a string |

