diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1992-12-30 06:01:05 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1992-12-30 06:01:05 -0500 |
commit | 874726a826cd567bc02c02ec24f2254e3e0af434 (patch) | |
tree | bbf3951f022e516497891aee755d52f4b5f2639b /gcc | |
parent | b7b2fc98eb898ef71c600be270a47d173debba62 (diff) | |
download | gcc-874726a826cd567bc02c02ec24f2254e3e0af434.zip gcc-874726a826cd567bc02c02ec24f2254e3e0af434.tar.gz gcc-874726a826cd567bc02c02ec24f2254e3e0af434.tar.bz2 |
(expand_expr, case TRUTH_XOR_EXPR): New case.
From-SVN: r2992
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4634,6 +4634,7 @@ expand_expr (exp, target, tmode, modifier) this_optab = ior_optab; goto binop; + case TRUTH_XOR_EXPR: case BIT_XOR_EXPR: this_optab = xor_optab; goto binop; |