summaryrefslogtreecommitdiff
path: root/ir_function.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ir_function.cpp')
-rw-r--r--ir_function.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/ir_function.cpp b/ir_function.cpp
index 4d246392ad..a8b73f1e1a 100644
--- a/ir_function.cpp
+++ b/ir_function.cpp
@@ -126,13 +126,10 @@ parameter_lists_match(exec_list *list_a, exec_list *list_b)
break;
case ir_var_out:
- /* FINISHME: Make sure that actual is a valid lvalue. */
score = type_compare(actual->type, param->type);
break;
case ir_var_inout:
- /* FINISHME: Make sure that actual is a valid lvalue. */
-
/* Since there are no bi-directional automatic conversions (e.g.,
* there is int -> float but no float -> int), inout parameters must
* be exact matches.