mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 00:34:22 +00:00
make raw_inline work again for gcc 8.2
This commit is contained in:
parent
0f240969b4
commit
1e59241091
@ -18461,7 +18461,8 @@ static tree c_parser_inline_opcodes(c_parser * parser)
|
|||||||
c_parser_error (parser, "expected %<}%>");
|
c_parser_error (parser, "expected %<}%>");
|
||||||
}
|
}
|
||||||
|
|
||||||
return build_tree_list (get_identifier("__raw_inline__"), attr_args);
|
return build_tree_list (
|
||||||
|
canonicalize_attr_name(get_identifier("__raw_inline__")), attr_args);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Parse the body of a function declaration marked with "__RTL".
|
/* Parse the body of a function declaration marked with "__RTL".
|
||||||
|
@ -39388,7 +39388,7 @@ static tree cp_parser_inline_opcodes(cp_parser * parser)
|
|||||||
cp_parser_error (parser, "expected %<}%>");
|
cp_parser_error (parser, "expected %<}%>");
|
||||||
}
|
}
|
||||||
|
|
||||||
return build_tree_list (get_identifier("__raw_inline__"), attr_args);
|
return build_tree_list (canonicalize_attr_name(get_identifier("__raw_inline__")), attr_args);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Like finish_fully_implicit_template, but to be used in error
|
/* Like finish_fully_implicit_template, but to be used in error
|
||||||
|
Loading…
Reference in New Issue
Block a user