summaryrefslogtreecommitdiff
path: root/gcc/libfuncs.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2012-07-24 11:28:15 -0700
committerRichard Henderson <rth@gcc.gnu.org>2012-07-24 11:28:15 -0700
commitcd1440b199ae8476f1b6df884e86fa07388e1f80 (patch)
tree7a5f81d480a16d01d04ed37f989cde0c027bbf45 /gcc/libfuncs.h
parent658e8ebaac1aff81586940d4ca1661e0ab3c5f91 (diff)
Reduce the size of optabs representation
From-SVN: r189821
Diffstat (limited to 'gcc/libfuncs.h')
-rw-r--r--gcc/libfuncs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/libfuncs.h b/gcc/libfuncs.h
index bac49182bbf..75f7a69f532 100644
--- a/gcc/libfuncs.h
+++ b/gcc/libfuncs.h
@@ -52,7 +52,7 @@ enum libfunc_index
for normal optabs and conversion optabs. In the first case mode2
is unused. */
struct GTY(()) libfunc_entry {
- size_t optab;
+ optab op;
enum machine_mode mode1, mode2;
rtx libfunc;
};