diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/arm/arm.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1de656a..806734e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-12-05 William Cohen <wcohen@redhat.com> + + * config/arm/arm.h (THUMB_FUNCTION_PROFILER): Correct typo in + instruction. + 2001-12-05 Daniel Berlin <dan@cgsoftware.com> * config/rs6000/rs6000.h (enum rs6000_builtins): Add more altivec diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index 36a755d..5ea3199 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -1576,7 +1576,7 @@ typedef struct #define THUMB_FUNCTION_PROFILER(STREAM, LABELNO) \ { \ - fprintf (STREAM, "\tmov\\tip, lr\n"); \ + fprintf (STREAM, "\tmov\tip, lr\n"); \ fprintf (STREAM, "\tbl\tmcount\n"); \ fprintf (STREAM, "\t.word\tLP%d\n", LABELNO); \ } |
