Commit dd5c7759 by Joe Buck Committed by Jim Wilson

* c-decl.c (poplevel): Eliminate use of |= in function_body assignment.

From-SVN: r71297
parent 08deda2f
2003-09-10 Joe Buck <jbuck@welsh-buck.org>
* c-decl.c (poplevel): Eliminate use of |= in function_body assignment.
2003-09-10 Jerry Quinn <jlquinn@optonline.net>
* real.c: Update URL to VAX floating point docs.
......
......@@ -505,7 +505,8 @@ poplevel (int keep, int dummy ATTRIBUTE_UNUSED, int functionbody)
tree decl;
tree p;
scope->function_body |= functionbody;
/* The following line does not use |= due to a bug in HP's C compiler */
scope->function_body = scope->function_body | functionbody;
if (keep == KEEP_MAYBE)
keep = (scope->names || scope->tags);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment