diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2012-07-21 12:31:26 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2012-07-21 12:31:26 +0000 |
commit | 34540577d50a563160fd16097d29d500b112fefa (patch) | |
tree | 97a5fbb801fea17f958efc939a32165cfbfcf922 /gcc/tree-switch-conversion.c | |
parent | c55963ebd6b75545dc9f79fd081c596ef5cbe568 (diff) | |
download | gcc-34540577d50a563160fd16097d29d500b112fefa.zip gcc-34540577d50a563160fd16097d29d500b112fefa.tar.gz gcc-34540577d50a563160fd16097d29d500b112fefa.tar.bz2 |
Fix comment typo.
From-SVN: r189745
Diffstat (limited to 'gcc/tree-switch-conversion.c')
-rw-r--r-- | gcc/tree-switch-conversion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-switch-conversion.c b/gcc/tree-switch-conversion.c index 529c6a0..3f4e83d 100644 --- a/gcc/tree-switch-conversion.c +++ b/gcc/tree-switch-conversion.c @@ -176,7 +176,7 @@ as a single bit test: if ((1<<x) & ((1<<4)|(1<<6)|(1<<9)|(1<<11))) 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". The following example shows the code the transformation generates: |