summaryrefslogtreecommitdiff
path: root/ir_copy_propagation.cpp
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-05-26 11:32:52 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-05-26 15:23:25 -0700
commitb067db2e253059e83249b1e4d5f3c626b0e33807 (patch)
treef9deff26e662c3e3b1c62ec3ca7729627676af09 /ir_copy_propagation.cpp
parent36ea28646c666ac2af9b43c47e65f9f53ffcc390 (diff)
Refactor whole-variable assigment checking into member function
Diffstat (limited to 'ir_copy_propagation.cpp')
-rw-r--r--ir_copy_propagation.cpp19
1 files changed, 7 insertions, 12 deletions
diff --git a/ir_copy_propagation.cpp b/ir_copy_propagation.cpp
index e395fa9723..82172d29b6 100644
--- a/ir_copy_propagation.cpp
+++ b/ir_copy_propagation.cpp
@@ -267,18 +267,13 @@ add_copy(ir_assignment *ir, exec_list *acp)
return;
}
- ir_dereference *lhs_deref = ir->lhs->as_dereference();
- if (!lhs_deref || lhs_deref->mode != ir_dereference::ir_reference_variable)
- return;
- ir_variable *lhs_var = lhs_deref->variable_referenced();
-
- ir_dereference *rhs_deref = ir->rhs->as_dereference();
- if (!rhs_deref || rhs_deref->mode != ir_dereference::ir_reference_variable)
- return;
- ir_variable *rhs_var = rhs_deref->variable_referenced();
-
- entry = new acp_entry(lhs_var, rhs_var);
- acp->push_tail(entry);
+ ir_variable *lhs_var = ir->lhs->whole_variable_referenced();
+ ir_variable *rhs_var = ir->rhs->whole_variable_referenced();
+
+ if ((lhs_var != NULL) && (rhs_var != NULL)) {
+ entry = new acp_entry(lhs_var, rhs_var);
+ acp->push_tail(entry);
+ }
}
static void