diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-05-04 15:06:41 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-05-04 15:06:41 +0000 |
commit | df4ae16082e3e505dc093b768d20f2dbb31200de (patch) | |
tree | 1ddedd2de7e35d61a49586dd95345d1b563fd5a3 /gcc/expr.c | |
parent | 37a580360c3df196e8dc6e075ba1bd24d83bbefc (diff) | |
download | gcc-df4ae16082e3e505dc093b768d20f2dbb31200de.zip gcc-df4ae16082e3e505dc093b768d20f2dbb31200de.tar.gz gcc-df4ae16082e3e505dc093b768d20f2dbb31200de.tar.bz2 |
alpha.h: NULL_PTR -> NULL.
* alpha.h: NULL_PTR -> NULL.
* arm.c: Likewise.
* arm.h: Likewise.
* avr.h: Likewise.
* c4x.c: Likewise.
* c4x.h: Likewise.
* i386.c: Likewise.
* i386.md: Likewise.
* i860.c: Likewise.
* ia64.c: Likewise.
* m68hc11.h: Likewise.
* rs6000.h: Likewise.
* sh.c: Likewise.
* sh.h: Likewise.
* sparc.h: Likewise.
* v850.c: Likewise.
* expr.c: Likewise.
* final.c: Likewise.
* gcc.c: Likewise.
* recog.c: Likewise.
From-SVN: r41831
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2382,7 +2382,7 @@ clear_by_pieces (to, len, align) struct store_by_pieces data; data.constfun = clear_by_pieces_1; - data.constfundata = NULL_PTR; + data.constfundata = NULL; data.len = len; data.to = to; store_by_pieces_1 (&data, align); @@ -6601,7 +6601,7 @@ expand_expr (exp, target, tmode, modifier) return const0_rtx; case EXIT_EXPR: - expand_exit_loop_if_false (NULL_PTR, + expand_exit_loop_if_false (NULL, invert_truthvalue (TREE_OPERAND (exp, 0))); return const0_rtx; |