summaryrefslogtreecommitdiff
path: root/gcc/tree-inline.c
diff options
context:
space:
mode:
authordorit <dorit@138bc75d-0d04-0410-961f-82ee72b054a4>2005-01-18 08:52:07 +0000
committerdorit <dorit@138bc75d-0d04-0410-961f-82ee72b054a4>2005-01-18 08:52:07 +0000
commita0e79db9dfab30625298363638b8a5474f23dc77 (patch)
treeda5da079f8902b54e3b54e0554d84ff27b0e621c /gcc/tree-inline.c
parent18f18e6cf3cef52bb09bd3d2d74aca5135bdc94f (diff)
downloadgcc-a0e79db9dfab30625298363638b8a5474f23dc77.tar.gz
* tree-inline.c (estimate_num_insns_1): Added cases for
ALIGN_INDIRECT_REF, MISALIGNED_INDIRECT_REF, and REALIGN_LOAD_EXPR. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@93823 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r--gcc/tree-inline.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c
index cd6c88ab002..a578e1cad84 100644
--- a/gcc/tree-inline.c
+++ b/gcc/tree-inline.c
@@ -1190,6 +1190,8 @@ estimate_num_insns_1 (tree *tp, int *walk_subtrees, void *data)
case COMPONENT_REF:
case BIT_FIELD_REF:
case INDIRECT_REF:
+ case ALIGN_INDIRECT_REF:
+ case MISALIGNED_INDIRECT_REF:
case ARRAY_REF:
case ARRAY_RANGE_REF:
case OBJ_TYPE_REF:
@@ -1322,6 +1324,8 @@ estimate_num_insns_1 (tree *tp, int *walk_subtrees, void *data)
case ASM_EXPR:
+ case REALIGN_LOAD_EXPR:
+
case RESX_EXPR:
*count += 1;
break;