diff options
author | Finn Hakansson <finn@axis.com> | 1999-03-25 01:14:00 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-03-24 18:14:00 -0700 |
commit | 63681b5ff9a024c5fd85b4cc853e4c1238f97f12 (patch) | |
tree | 7b885d5cf1503e4d57f9006b9e68231c9197bdd4 /gcc/rtl.h | |
parent | b6c8f0b758b2755df83d6ede0352a5159e510abd (diff) | |
download | gcc-63681b5ff9a024c5fd85b4cc853e4c1238f97f12.zip gcc-63681b5ff9a024c5fd85b4cc853e4c1238f97f12.tar.gz gcc-63681b5ff9a024c5fd85b4cc853e4c1238f97f12.tar.bz2 |
* rtl.h (MEM_COPY_ATTRIBUTES): Remove unnecessary ending backslash.
From-SVN: r25966
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -588,7 +588,7 @@ extern char *note_insn_name[]; #define MEM_COPY_ATTRIBUTES(LHS, RHS) \ (MEM_VOLATILE_P (LHS) = MEM_VOLATILE_P (RHS), \ MEM_IN_STRUCT_P (LHS) = MEM_IN_STRUCT_P (RHS), \ - MEM_SCALAR_P (LHS) = MEM_SCALAR_P (RHS)) \ + MEM_SCALAR_P (LHS) = MEM_SCALAR_P (RHS)) /* If VAL is non-zero, set MEM_IN_STRUCT_P and clear MEM_SCALAR_P in RTX. Otherwise, vice versa. Use this macro only when you are |