diff options
author | 2015-03-25 11:17:37 +0000 | |
---|---|---|
committer | 2015-03-25 12:30:26 +0000 | |
commit | b2bd1c5f9171f35fa5b71ada42d1a9e11189428d (patch) | |
tree | db9165b3daa18d1d430b690b78c2d125bade3021 /compiler/optimizing/boolean_simplifier.h | |
parent | 11e99b19f48576f1bb6d0993635b34b6e09c9832 (diff) |
ART: Formatting and comments in BooleanSimplifier
Change-Id: I9a5aa3f2aa8b0a29d7b0f1e5e247397cf8e9e379
Diffstat (limited to 'compiler/optimizing/boolean_simplifier.h')
-rw-r--r-- | compiler/optimizing/boolean_simplifier.h | 2 |
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. |