diff options
author | Mike Stump <mrs@gcc.gnu.org> | 1992-10-08 09:34:37 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 1992-10-08 09:34:37 +0000 |
commit | ca46db8715e198dc860f6ff6e62131ed78b5a020 (patch) | |
tree | d2b2fa00ea8131b67f216914e998e50e173eed32 /gcc/fold-const.c | |
parent | b8b88835dfb7fa8a470bba41ad2dfba8f894f461 (diff) | |
download | gcc-ca46db8715e198dc860f6ff6e62131ed78b5a020.zip gcc-ca46db8715e198dc860f6ff6e62131ed78b5a020.tar.gz gcc-ca46db8715e198dc860f6ff6e62131ed78b5a020.tar.bz2 |
Fix a simple typo.
From-SVN: r2368
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 9cb107e..351e13f 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -2000,7 +2000,7 @@ invert_truthvalue (arg) && code != NE_EXPR && code != EQ_EXPR) return build1 (TRUTH_NOT_EXPR, type, arg); else - return build (invert_tree_comparison (code), + return build (invert_tree_comparison (code), type, TREE_OPERAND (arg, 0), TREE_OPERAND (arg, 1)); } |