Closed
Description
This issue was originally filed by [email protected]
example usage:
bool a();
bool b();
return a() | b(); // Want to call b() even if a() returns false.
Second example usage
bool dirty = false; // accumulate dirty bit
dirty |= a();
dirty |= b();
dirty |= c();
return dirty;