Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(131)

Unified Diff: runtime/vm/intermediate_language.cc

Issue 2850783002: Dart SDK Spelling b, c, and d. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | runtime/vm/isolate_reload.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intermediate_language.cc
diff --git a/runtime/vm/intermediate_language.cc b/runtime/vm/intermediate_language.cc
index 45c3129456b4000811218ef925cba7a56065d198..79e5100a6b77a1d780817340c9e4f3bd93e64e7a 100644
--- a/runtime/vm/intermediate_language.cc
+++ b/runtime/vm/intermediate_language.cc
@@ -276,7 +276,7 @@ intptr_t CheckClassInstr::ComputeCidMask() const {
bool CheckClassInstr::IsDenseMask(intptr_t mask) {
- // Returns true if the mask is a continuos sequence of ones in its binary
+ // Returns true if the mask is a continuous sequence of ones in its binary
// representation (i.e. no holes)
return mask == -1 || Utils::IsPowerOfTwo(mask + 1);
}
@@ -2314,8 +2314,8 @@ Definition* UnboxedIntConverterInstr::Canonicalize(FlowGraph* flow_graph) {
value()->definition()->AsUnboxedIntConverter();
if ((box_defn != NULL) && (box_defn->representation() == from())) {
if (box_defn->from() == to()) {
- // Do not erase truncating convertions from 64-bit value to 32-bit values
- // because such convertions erase upper 32 bits.
+ // Do not erase truncating conversions from 64-bit value to 32-bit values
+ // because such conversions erase upper 32 bits.
if ((box_defn->from() == kUnboxedMint) && box_defn->is_truncating()) {
return this;
}
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | runtime/vm/isolate_reload.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698