diff options
author | YamaArashi <shadow962@live.com> | 2016-03-07 22:25:06 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-03-07 22:25:06 -0800 |
commit | 08234586501ffddc186f6e254ce6847faa139f5f (patch) | |
tree | 053a7b04d58cd193182fe12bfc50fe6f325525eb /gcc/config/arm/lib1thumb.asm | |
parent | 63aec4bbdd77671b92dafbe6cb6e2e14f7a6635b (diff) |
never use leading underscore
Diffstat (limited to 'gcc/config/arm/lib1thumb.asm')
-rwxr-xr-x | gcc/config/arm/lib1thumb.asm | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/gcc/config/arm/lib1thumb.asm b/gcc/config/arm/lib1thumb.asm index dcabcf4..e0ff746 100755 --- a/gcc/config/arm/lib1thumb.asm +++ b/gcc/config/arm/lib1thumb.asm @@ -34,10 +34,6 @@ Boston, MA 02111-1307, USA. */ the executable file might be covered by the GNU General Public License. */ .code 16 - -#ifndef __USER_LABEL_PREFIX__ -#error __USER_LABEL_PREFIX__ not defined -#endif #ifdef __elf__ #define __PLT__ (PLT) @@ -50,15 +46,8 @@ Boston, MA 02111-1307, USA. */ #endif #define RET mov pc, lr - -/* ANSI concatenation macros. */ - -#define CONCAT1(a, b) CONCAT2(a, b) -#define CONCAT2(a, b) a ## b - -/* Use the right prefix for global labels. */ -#define SYM(x) CONCAT1 (__USER_LABEL_PREFIX__, x) +#define SYM(x) x work .req r4 @ XXXX is this safe ? |