diff options
author | David S. Miller <davem@davemloft.net> | 2008-05-17 00:19:28 +0000 |
---|---|---|
committer | David S. Miller <davem@gcc.gnu.org> | 2008-05-16 17:19:28 -0700 |
commit | b61eacd60f0d11775049ab521ab6111a3e298749 (patch) | |
tree | 26517caeeda270b2942887fc7914d9cad710955a /gcc | |
parent | 7da05a2af34b666c94c3cdc5535f9920fb487ce1 (diff) | |
download | gcc-b61eacd60f0d11775049ab521ab6111a3e298749.zip gcc-b61eacd60f0d11775049ab521ab6111a3e298749.tar.gz gcc-b61eacd60f0d11775049ab521ab6111a3e298749.tar.bz2 |
linux.h (NO_PROFILE_COUNTERS): Undef before overriding.
* config/sparc/linux.h (NO_PROFILE_COUNTERS): Undef before
overriding.
* config/sparc/linux64.h (NO_PROFILE_COUNTERS): Likewise.
From-SVN: r135459
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/sparc/linux.h | 1 | ||||
-rw-r--r-- | gcc/config/sparc/linux64.h | 1 |
3 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 59c00bb..86c6d31 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2008-05-16 David S. Miller <davem@davemloft.net> + + * config/sparc/linux.h (NO_PROFILE_COUNTERS): Undef before + overriding. + * config/sparc/linux64.h (NO_PROFILE_COUNTERS): Likewise. + 2008-05-16 Uros Bizjak <ubizjak@gmail.com> PR target/36246 diff --git a/gcc/config/sparc/linux.h b/gcc/config/sparc/linux.h index ab2ab30..9014ae5 100644 --- a/gcc/config/sparc/linux.h +++ b/gcc/config/sparc/linux.h @@ -177,4 +177,5 @@ do { \ #define TARGET_ALTERNATE_LONG_DOUBLE_MANGLING /* We use glibc _mcount for profiling. */ +#undef NO_PROFILE_COUNTERS #define NO_PROFILE_COUNTERS 1 diff --git a/gcc/config/sparc/linux64.h b/gcc/config/sparc/linux64.h index cd15667..4c35ded 100644 --- a/gcc/config/sparc/linux64.h +++ b/gcc/config/sparc/linux64.h @@ -311,4 +311,5 @@ do { \ #define TARGET_ALTERNATE_LONG_DOUBLE_MANGLING /* We use glibc _mcount for profiling. */ +#undef NO_PROFILE_COUNTERS #define NO_PROFILE_COUNTERS 1 |