From 123c39c02bc5d2a5bdd9e12d24b65563e7adf07e Mon Sep 17 00:00:00 2001 From: Enrico Granata Date: Sat, 23 Mar 2013 01:44:23 +0000 Subject: Invert two condition checks to evaluate them in cheapest-to-more-expensive order llvm-svn: 177810 --- lldb/source/Core/ValueObject.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/source/Core/ValueObject.cpp') diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index 279f92c3b63..80adcc3ad7e 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -1259,9 +1259,9 @@ ValueObject::GetValueAsCString (lldb::Format format, lldb_private::DataExtractor special_format_data; clang::ASTContext* ast = GetClangAST(); Flags type_flags(ClangASTContext::GetTypeInfo(clang_type, ast, NULL)); - if (type_flags.Test(ClangASTContext::eTypeIsPointer) && !type_flags.Test(ClangASTContext::eTypeIsObjC)) + if (format == eFormatCString) { - if (format == eFormatCString) + 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 TargetSP target_sp(GetTargetSP()); -- cgit v1.2.3