aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@gcc.gnu.org>2000-02-11 22:45:00 +0000
committerNick Clifton <nickc@gcc.gnu.org>2000-02-11 22:45:00 +0000
commit0a9f300a82e92cac5657a8adbcea689e68cc795b (patch)
tree0411cf41f3dae4483928f31ba61edde7aa80ceb4
parent3bcb1bb0c652f8d88e68ed1d5157fead4a667536 (diff)
downloadgcc-0a9f300a82e92cac5657a8adbcea689e68cc795b.zip
gcc-0a9f300a82e92cac5657a8adbcea689e68cc795b.tar.gz
gcc-0a9f300a82e92cac5657a8adbcea689e68cc795b.tar.bz2
oops - remove extranseous SAYMBOL_REF_FLAG usage from -mlong-calls patch
From-SVN: r31938
-rw-r--r--gcc/config/arm/arm.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h
index 1a27a74..0a08a5a 100644
--- a/gcc/config/arm/arm.h
+++ b/gcc/config/arm/arm.h
@@ -1453,14 +1453,6 @@ CUMULATIVE_ARGS;
When generating pic allow anything. */
#define LEGITIMATE_CONSTANT_P(X) (flag_pic || ! label_mentioned_p (X))
-/* If we are referencing a function that is static or is known to be
- in this file, make the SYMBOL_REF special. We can use this to indicate
- that we can do direct call to that function. */
-#define ARM_MARK_NEARBY_FUNCTION(decl) \
- if (TREE_CODE (decl) == FUNCTION_DECL \
- && (TREE_ASM_WRITTEN (decl) || ! TREE_PUBLIC (decl))) \
- SYMBOL_REF_FLAG (XEXP (DECL_RTL (decl), 0)) = 1; \
-
/* Symbols in the text segment can be accessed without indirecting via the
constant pool; it may take an extra binary operation, but this is still
faster than indirecting via memory. Don't do this when not optimizing,
@@ -1478,13 +1470,6 @@ CUMULATIVE_ARGS;
? TREE_CST_RTL (decl) : DECL_RTL (decl)); \
SYMBOL_REF_FLAG (XEXP (rtl, 0)) = 1; \
} \
- \
- ARM_MARK_NEARBY_FUNCTION (decl) \
-}
-#else
-#define ENCODE_SECTION_INFO(decl) \
-{ \
- ARM_MARK_NEARBY_FUNCTION (decl) \
}
#endif