@@ -458,15 +458,12 @@ public:
bool is_lvalue()
{
ir_variable *as_var;
if (var == NULL)
return NULL;
as_var = var->as_variable();
return false;
ir_variable *const as_var = var->as_variable();
if (as_var == NULL)
return !as_var->read_only;
}
The note is not visible to the blocked user.