+2020-01-24 Nathan Sidwell <nathan@acm.org>
+
+ * expr.c (parse_has_include): Remove bogus controlling macro code.
+
2020-01-20 Nathan Sidwell <nathan@acm.org>
PR preprocessor/80005
pfile->state.angled_headers = false;
bool bracket = token->type != CPP_STRING;
- cpp_hashnode *node = NULL;
char *fname = NULL;
if (token->type == CPP_STRING || token->type == CPP_HEADER_NAME)
{
fname = XNEWVEC (char, token->val.str.len - 1);
memcpy (fname, token->val.str.text + 1, token->val.str.len - 2);
fname[token->val.str.len - 2] = '\0';
- node = token->val.node.node;
}
else if (token->type == CPP_LESS)
fname = _cpp_bracket_include (pfile);
cpp_error (pfile, CPP_DL_ERROR,
"missing ')' after \"%s\" operand", NODE_NAME (op));
- if (node)
- pfile->mi_ind_cmacro = node;
-
return result;
}