diff options
author | Aldy Hernandez <aldyh@gcc.gnu.org> | 2001-02-21 18:25:34 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2001-02-21 18:25:34 +0000 |
commit | a43f528e5ab9ddc9053f881e1056872ac4341f80 (patch) | |
tree | 8fa7d6713a1938802ee5e35d1e1856634a843890 /gcc | |
parent | 2b71bf377cc9f20f94822f3d5f41af9dc6c986cc (diff) | |
download | gcc-a43f528e5ab9ddc9053f881e1056872ac4341f80.zip gcc-a43f528e5ab9ddc9053f881e1056872ac4341f80.tar.gz gcc-a43f528e5ab9ddc9053f881e1056872ac4341f80.tar.bz2 |
fixed typo in last commit re REVERSE_CONDEXEC_PREDICATES_P
From-SVN: r39954
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/tm.texi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tm.texi b/gcc/tm.texi index 7676b19..69574c2 100644 --- a/gcc/tm.texi +++ b/gcc/tm.texi @@ -4885,7 +4885,8 @@ like: A C expression that returns true if the conditional execution predicate @var{code1} is the inverse of @var{code2} and vice versa. Define this to return 0 if the target has conditional execution predicates that cannot be -reversed safely. If none is specified, this macro expands to: +reversed safely. If no expansion is specified, this macro is defined as +follows: @smallexample #define REVERSE_CONDEXEC_PREDICATES_P (x, y) ((x) == reverse_condition (y)) |