diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/systemc/ext/dt/int/sc_int_base.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systemc/ext/dt/int/sc_int_base.hh b/src/systemc/ext/dt/int/sc_int_base.hh index a8f602028..6ea7e2011 100644 --- a/src/systemc/ext/dt/int/sc_int_base.hh +++ b/src/systemc/ext/dt/int/sc_int_base.hh @@ -341,9 +341,9 @@ class sc_int_subref_r : public sc_value_base bool and_reduce() const; bool nand_reduce() const { return !and_reduce(); } bool or_reduce() const; - bool nor_reduce() const { return or_reduce(); } + bool nor_reduce() const { return !or_reduce(); } bool xor_reduce() const; - bool xnor_reduce() const { return xor_reduce(); } + bool xnor_reduce() const { return !xor_reduce(); } // implicit conversion to uint_type operator uint_type () const; |