Commit 97d62313 by Joe Buck Committed by Jim Wilson

Patch from Joe Buck to workaround HP C bug.

* cppfiles.c (pchf_adder): Eliminate use of |= in d->have_once_only
assignment.

From-SVN: r81458
parent 03a53989
2004-05-03 Joe Buck <jbuck@welsh-buck.org>
* cppfiles.c (pchf_adder): Eliminate use of |= in d->have_once_only
assignment.
2004-05-03 Eric Christopher <echristo@redhat.com>
* config/mips/mips.md: Fix branch length attribute definition.
......
......@@ -1398,7 +1398,8 @@ pchf_adder (void **slot, void *data)
return 1;
d->entries[count].once_only = f->once_only;
d->have_once_only |= f->once_only;
/* |= is avoided in the next line because of an HP C compiler bug */
d->have_once_only = d->have_once_only | f->once_only;
if (f->buffer_valid)
md5_buffer ((const char *)f->buffer,
f->st.st_size, d->entries[count].sum);
......
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