From 9d71afe8cfd49c92504c382b08ed39f6390fc51b Mon Sep 17 00:00:00 2001 From: Enrico Granata Date: Sat, 23 Mar 2013 01:44:59 +0000 Subject: And then again only compute the more expensive piece of data if need be :-) llvm-svn: 177812 --- lldb/source/Core/ValueObject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Core/ValueObject.cpp') 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 -- cgit v1.2.3