summaryrefslogtreecommitdiffstats
path: root/compiler/optimizing/boolean_simplifier.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/optimizing/boolean_simplifier.h')
-rw-r--r--compiler/optimizing/boolean_simplifier.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/boolean_simplifier.h b/compiler/optimizing/boolean_simplifier.h
index 9fa9c5acdb..a88733e1af 100644
--- a/compiler/optimizing/boolean_simplifier.h
+++ b/compiler/optimizing/boolean_simplifier.h
@@ -15,7 +15,7 @@
*/
// This optimization recognizes a common pattern where a boolean value is
-// either casted to an integer or negated by selecting from zero/one integer
+// either cast to an integer or negated by selecting from zero/one integer
// constants with an If statement. Because boolean values are internally
// represented as zero/one, we can safely replace the pattern with a suitable
// condition instruction.