diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-24 18:28:15 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-24 18:28:15 +0000 |
commit | ee65118b7cf6bdb7a115ba1a7e01a94f1617d5a4 (patch) | |
tree | 7a5f81d480a16d01d04ed37f989cde0c027bbf45 /gcc/libfuncs.h | |
parent | 41622801acdf740c6e7b3f69b4a639b69a078dff (diff) | |
download | gcc-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.h | 2 |
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; }; |