We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d881e2 commit d2665f0Copy full SHA for d2665f0
lldb/source/ValueObject/DILEval.cpp
@@ -123,10 +123,8 @@ LookupIdentifier(const std::string &name,
123
if (!reg_ctx)
124
return nullptr;
125
126
- if (const RegisterInfo *reg_info =
127
- reg_ctx->GetRegisterInfoByName(reg_name))
128
- value_sp =
129
- ValueObjectRegister::Create(stack_frame, reg_ctx, reg_info);
+ if (const RegisterInfo *reg_info = reg_ctx->GetRegisterInfoByName(reg_name))
+ value_sp = ValueObjectRegister::Create(stack_frame, reg_ctx, reg_info);
130
131
if (value_sp)
132
return IdentifierInfo::FromValue(*value_sp);
0 commit comments