Index: runtime/vm/flow_graph_allocator.cc |
diff --git a/runtime/vm/flow_graph_allocator.cc b/runtime/vm/flow_graph_allocator.cc |
index de0cbed436a43cd05342330a331cf043aec230a1..b2a8f73ea5421b138b106dc649791af05140078b 100644 |
--- a/runtime/vm/flow_graph_allocator.cc |
+++ b/runtime/vm/flow_graph_allocator.cc |
@@ -2745,6 +2745,9 @@ static Representation RepresentationForRange(Representation definition_rep) { |
if (definition_rep == kUnboxedMint) { |
// kUnboxedMint is split into two ranges, each of which are kUntagged. |
return kUntagged; |
+ } else if (definition_rep == kUnboxedUint32) { |
+ // kUnboxedUint32 is untagged. |
+ return kUntagged; |
} |
return definition_rep; |
} |