summaryrefslogtreecommitdiff
path: root/gcc/config/i386/predicates.md
diff options
context:
space:
mode:
authorUros Bizjak <ubizjak@gmail.com>2012-03-13 16:49:06 +0100
committerUros Bizjak <uros@gcc.gnu.org>2012-03-13 16:49:06 +0100
commit62a1c0416faf365a7d1fc9c31e009d784ef832f2 (patch)
tree2ff95070376f792d1528966b88c04b3b7e796ae5 /gcc/config/i386/predicates.md
parent7e9e7e6cea34514a3ad75afb99484d5d07937747 (diff)
downloadgcc-62a1c0416faf365a7d1fc9c31e009d784ef832f2.tar.gz
predicates.md (tls_symbolic_operand): Declare as special predicate.
* config/i386/predicates.md (tls_symbolic_operand): Declare as special predicate. (tls_modbase_operand): Ditto. * config/i386/i386.md: Remove mode from tls_symbolic_operand and tls_modbase_operand predicates. From-SVN: r185341
Diffstat (limited to 'gcc/config/i386/predicates.md')
-rw-r--r--gcc/config/i386/predicates.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i386/predicates.md b/gcc/config/i386/predicates.md
index 7e0e1effaa8..4c766484ecf 100644
--- a/gcc/config/i386/predicates.md
+++ b/gcc/config/i386/predicates.md
@@ -491,11 +491,11 @@
(match_operand 0 "local_symbolic_operand")))
;; Test for various thread-local symbols.
-(define_predicate "tls_symbolic_operand"
+(define_special_predicate "tls_symbolic_operand"
(and (match_code "symbol_ref")
(match_test "SYMBOL_REF_TLS_MODEL (op)")))
-(define_predicate "tls_modbase_operand"
+(define_special_predicate "tls_modbase_operand"
(and (match_code "symbol_ref")
(match_test "op == ix86_tls_module_base ()")))