summaryrefslogtreecommitdiff
path: root/gcc/libfuncs.h
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2012-07-24 18:28:15 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2012-07-24 18:28:15 +0000
commitee65118b7cf6bdb7a115ba1a7e01a94f1617d5a4 (patch)
tree7a5f81d480a16d01d04ed37f989cde0c027bbf45 /gcc/libfuncs.h
parent41622801acdf740c6e7b3f69b4a639b69a078dff (diff)
downloadgcc-ee65118b7cf6bdb7a115ba1a7e01a94f1617d5a4.tar.gz
Reduce the size of optabs representation
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@189821 138bc75d-0d04-0410-961f-82ee72b054a4
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;
};