diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 2005-11-02 12:53:14 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2005-11-02 12:53:14 -0500 |
commit | f85f1ca7b80e46fd145be68f0dffc87f661656ec (patch) | |
tree | 2365dd112d3d9bd0e8ac3f949f7a023fec09c8a5 /gcc/tree.c | |
parent | 3d8aa000c34b094c66f1be45c6083d9ee3069a21 (diff) | |
download | gcc-f85f1ca7b80e46fd145be68f0dffc87f661656ec.zip gcc-f85f1ca7b80e46fd145be68f0dffc87f661656ec.tar.gz gcc-f85f1ca7b80e46fd145be68f0dffc87f661656ec.tar.bz2 |
(tree_int_cst_sgn): Fix typo in comment.
From-SVN: r106387
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4406,7 +4406,7 @@ tree_int_cst_msb (tree t) /* Return an indication of the sign of the integer constant T. The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0. - Note that -1 will never be returned it T's type is unsigned. */ + Note that -1 will never be returned if T's type is unsigned. */ int tree_int_cst_sgn (tree t) |