diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-09-21 07:11:46 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-09-21 07:11:46 -0400 |
commit | fb19c17f946b5e9208113a299203e84bd7e6a03f (patch) | |
tree | 5e9f74405d61801447cb491f00daaf9ac13632a4 | |
parent | 264f070a1d533c0c3d3bdbc04e8d784fbb2d71e2 (diff) | |
download | gcc-fb19c17f946b5e9208113a299203e84bd7e6a03f.zip gcc-fb19c17f946b5e9208113a299203e84bd7e6a03f.tar.gz gcc-fb19c17f946b5e9208113a299203e84bd7e6a03f.tar.bz2 |
(USER_LABEL_PREFIX): Define.
From-SVN: r12757
-rw-r--r-- | gcc/config/rs6000/rs6000.h | 2 | ||||
-rw-r--r-- | gcc/config/rs6000/win-nt.h | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index c365e64..6340444 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -1124,6 +1124,8 @@ extern enum rs6000_abi rs6000_current_abi; /* available for use by subtarget */ /* Default ABI to compile code for */ #ifndef DEFAULT_ABI #define DEFAULT_ABI ABI_AIX +/* The prefix to add to user-visible assembler symbols. */ +#define USER_LABEL_PREFIX "." #endif /* Structure used to define the rs6000 stack */ diff --git a/gcc/config/rs6000/win-nt.h b/gcc/config/rs6000/win-nt.h index aa0d7e7..00357d3 100644 --- a/gcc/config/rs6000/win-nt.h +++ b/gcc/config/rs6000/win-nt.h @@ -454,6 +454,9 @@ dtors_section () \ fprintf (FILE, "\n"); \ } +/* The prefix to add to user-visible assembler symbols. */ + +#define USER_LABEL_PREFIX ".." /* Eliminate AIX style constant pool processing */ #undef LEGITIMATE_CONSTANT_POOL_BASE_P |