diff options
author | Richard Stallman <rms@gnu.org> | 1993-09-22 02:33:56 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-09-22 02:33:56 +0000 |
commit | c7544ff7aee3a0a4f190d61738b9087d9fe371ef (patch) | |
tree | a47afbba759dd43bcb1fa48e1457d6a0c60350e5 /gcc/libgcc2.c | |
parent | 0defb1d5a1f868c88d47673936e637d78e6ad9ab (diff) | |
download | gcc-c7544ff7aee3a0a4f190d61738b9087d9fe371ef.zip gcc-c7544ff7aee3a0a4f190d61738b9087d9fe371ef.tar.gz gcc-c7544ff7aee3a0a4f190d61738b9087d9fe371ef.tar.bz2 |
(L_bb): Test inhibit_libc.
From-SVN: r5383
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r-- | gcc/libgcc2.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index d020e97..04fb10c 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -1313,6 +1313,7 @@ struct bb #ifdef BLOCK_PROFILER_CODE BLOCK_PROFILER_CODE #else +#ifndef inhibit_libc /* Simple minded basic block profiling output dumper for systems that don't provde tcov support. At present, @@ -1483,8 +1484,9 @@ __bb_init_func (struct bb *blocks) bb_head = blocks; } -#endif /* !BLOCK_PROFILER_CODE */ -#endif /* L_bb */ +#endif /* not inhibit_libc */ +#endif /* not BLOCK_PROFILER_CODE */ +#endif /* L_bb */ /* frills for C++ */ |