Commit 34540577 by Steven Bosscher

Fix comment typo.

From-SVN: r189745
parent c55963eb
...@@ -176,7 +176,7 @@ as a single bit test: ...@@ -176,7 +176,7 @@ as a single bit test:
if ((1<<x) & ((1<<4)|(1<<6)|(1<<9)|(1<<11))) if ((1<<x) & ((1<<4)|(1<<6)|(1<<9)|(1<<11)))
This transformation is only applied if the number of case targets is small, This transformation is only applied if the number of case targets is small,
if CST constains at least 3 bits, and "x << 1" is cheap. The bit tests are if CST constains at least 3 bits, and "1 << x" is cheap. The bit tests are
performed in "word_mode". performed in "word_mode".
The following example shows the code the transformation generates: The following example shows the code the transformation generates:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment