diff options
author | Zack Weinberg <zack@wolery.cumb.org> | 2000-05-18 22:05:15 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-05-18 22:05:15 +0000 |
commit | 1b3459d226b20b35cb410dd957fcf0d070cb4269 (patch) | |
tree | c1e02b20d60f15a0aa07b56f35bf635004419b92 /gcc/genattr.c | |
parent | 606b4c940420871b8a195c6830c0dbe64a239e76 (diff) | |
download | gcc-1b3459d226b20b35cb410dd957fcf0d070cb4269.tar.gz |
genopinit.c: Use $ for escape sequences in optab patterns.
* genopinit.c: Use $ for escape sequences in optab patterns.
Remove backslashes from optab patterns. Change $A, $B, $C to
expand to (int) whatever instead of just whatever; remove
explicit (int) from all optab patterns.
* gensupport.c (xmalloc, xrealloc, xstrdup): Provide.
* genattr.c, genattrtab.c, gencodes.c, genconfig.c, genemit.c,
genextract.c, genflags.c, genopinit.c, genoutput.c, genpeep.c,
genrecog.c: Remove private copies of xmalloc, xrealloc, and
From-SVN: r34000
Diffstat (limited to 'gcc/genattr.c')
-rw-r--r-- | gcc/genattr.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/gcc/genattr.c b/gcc/genattr.c index 9207876e817..6a593edeb21 100644 --- a/gcc/genattr.c +++ b/gcc/genattr.c @@ -183,32 +183,6 @@ write_units (num_units, multiplicity, simultaneity, printf ("#define INSN_QUEUE_SIZE %d\n", q_size); } -PTR -xmalloc (size) - size_t size; -{ - register PTR val = (PTR) malloc (size); - - if (val == 0) - fatal ("virtual memory exhausted"); - return val; -} - -PTR -xrealloc (old, size) - PTR old; - size_t size; -{ - register PTR ptr; - if (old) - ptr = (PTR) realloc (old, size); - else - ptr = (PTR) malloc (size); - if (!ptr) - fatal ("virtual memory exhausted"); - return ptr; -} - extern int main PARAMS ((int, char **)); int |