[PATCH] Add if-chain to switch conversion pass.

Martin Liška mliska@suse.cz
Fri Nov 15 13:56:00 GMT 2019


On 11/14/19 11:37 AM, Richard Biener wrote:
> On Thu, Nov 14, 2019 at 10:39 AM Martin Liška <mliska@suse.cz> wrote:
>>
>> On 11/5/19 1:38 PM, Richard Biener wrote:
>>> On Mon, Nov 4, 2019 at 3:49 PM Jakub Jelinek <jakub@redhat.com> wrote:
>>>>
>>>> On Mon, Nov 04, 2019 at 03:23:20PM +0100, Martin Liška wrote:
>>>>> The patch adds a new pass that identifies a series of if-elseif
>>>>> statements and transform then into a GIMPLE switch (if possible).
>>>>> The pass runs right after tree-ssa pass and I decided to implement
>>>>> matching of various forms that are introduced by folder (fold_range_test):
>>>>
>>>> Not a review, just a few questions:
>>
>> Hello.
>>
>>>
>>> Likewise - please do not name switches -ftree-*, 'tree' doens't add anything
>>> but confusion to users.  Thus use -fif-to-switch or -fconvert-if-to-switch
>>
>> Agree with you, I selected the later option.
>>
>>>
>>> +The transformation can help to produce a faster code for
>>> +the switch statement.
>>>
>>> produce faster code.
>>
>> Fixed.
>>
>>>
>>> Doesn't it also produce smaller code eventually?
>>
>> In some situation yes, but generally it leads to more jump tables
>> (which are bigger when expanded).
>>
>>>
>>> Please to not put code transform passes into build_ssa_passes (why did
>>> you choose this place)?
>>
>> Well, that was my initial pass selection as I wanted to have a GIMPLE
>> code close to what FEs produce.
>>
>>>   The pass should go into pass_all_early_optimizations
>>> instead, and I'm quite sure you want to run _after_ CSE.  I'd even say
>>> that the pass should run as part of switch-conversion, so we build
>>> a representation of a switch internally and then code-generate the optimal
>>> form directly.  For now just put the pass before switch-conversion.
>>
>> But yes, the suggested place is much better place and we can benefit from
>> VRP (that will kill dead conditions in a if-else chain)
>>
>>>
>>> There are functions without comments in the patch and you copied
>>> from DSE which shows in confusing comments left over from the original.
>>>
>>> +  mark_virtual_operands_for_renaming (cfun);
>>>
>>> if you did nothing renaming all vops is expensive.
>>
>> This one is needed for situations like:
>>
>> fn1 ()
>> {
>>     <unnamed type> a.0_1;
>>
>>     <bb 2> :
>>     # VUSE <.MEM_5(D)>
>>     a.0_1 = a;
>>     if (a.0_1 == 0)
>>       goto <bb 6>; [INV]
>>     else
>>       goto <bb 3>; [INV]
>>
>>     <bb 3> :
>>     if (a.0_1 == 1)
>>       goto <bb 6>; [INV]
>>     else
>>       goto <bb 4>; [INV]
>>
>>     <bb 4> :
>>     if (a.0_1 == 2)
>>       goto <bb 5>; [INV]
>>     else
>>       goto <bb 6>; [INV]
>>
>>     <bb 5> :
>>     # .MEM_6 = VDEF <.MEM_5(D)>
>>     fn2 ();
>>
>>     <bb 6> :
>>     # .MEM_4 = PHI <.MEM_5(D)(2), .MEM_5(D)(3), .MEM_5(D)(4), .MEM_6(5)>
>>     # VUSE <.MEM_4>
>>     return;
>>
>> }
>>
>> where without the call, I end up with:
>>
>>     <bb 2> :
>>     # VUSE <.MEM_5(D)>
>>     a.0_1 = a;
>>     switch (a.0_1) <default: <L8> [INV], case 0: <L8> [INV], case 1: <L8> [INV], case 2: <L9> [INV]>
>>
>>     <bb 3> :
>> <L9>:
>>     # .MEM_6 = VDEF <.MEM_5(D)>
>>     fn2 ();
>>
>>     <bb 4> :
>>     # .MEM_4 = PHI <.MEM_6(3), (2)>
> 
> I meant you are doing it unconditionally even if you didn't transform
> any if-then-else chain.

Ah, I've got it ;)

> 
>>
>>>
>>> I'm missing an overall comment - you are using a dominator walk
>>> but do nothing in the after hook which means you are not really
>>> gathering any data?  You're also setting visited bits on BBs which
>>> means you are visiting alternate BBs during the DOM walk.
>>
>> You are right, I'm a bit cheating with the DOM walk as I also mark visited BBs.
>> What I want is for each if-else condition, I want to visit the first IF in such
>> chain. That's why I decided to iterate in DOMINATOR order.
>> Can I do it simpler?
> 
> Put that in a comment, do away with domwalk and instead start from
> ENTRY_BLOCK, using a worklist seeded by {first,next}_dom_son ()
> and avoid putting visited blocks on that worklist.

Rewritten to that pattern. Thank you for it, the code is much smaller as
the dom walker is really not needed.

> 
> Btw, what about if-chains nested in another if-chain?

Yes, it's supported. Actually the comparison BBs in a pair of if-chains
can't overlap, so all is fine and we can't mess up CFG. Moreover, I first
walk the DOM, analyze all if-chains and later then all the candidates are
transformed.

> Don't you want to
> transform "inner" chains first or does it really not matter (you're adjusting
> the CFG, doing that inside the domwalk is fishy since that also uses
> pre-computed RPO order; the simple dom-son walking should work
> but you of course might miss some blocks depending on how you set up
> things).

As explained, it's not a deal.

Patch can bootstrap on x86_64-linux-gnu and survives regression tests. I'm also sending
dump for make all-host.

Ready to be installed?
Thanks,
Martin

> 
> Richard.
> 
>> Thanks,
>> Martin
>>
>>>
>>>> 1) what does it do if __builtin_expect* has been used, does it preserve
>>>>      the probabilities and if in the end decides to expand as ifs, are those
>>>>      probabilities retained through it?
>>>> 2) for the reassoc-*.c testcases, do you get identical or better code
>>>>      with the patch?
>>>> 3) shouldn't it be gimple-if-to-switch.c instead?
>>>> 4) what code size effect does the patch have say on cc1plus (if you don't
>>>>      count the code changes of the patch itself, i.e. revert the patch in the
>>>>      stage3 and rebuild just the stage3)?
>>>>
>>>>> +struct case_range
>>>>> +{
>>>>> +  /* Default constructor.  */
>>>>> +  case_range ():
>>>>> +    m_min (NULL_TREE), m_max (NULL_TREE)
>>>>
>>>> I admit I'm never sure about coding conventions for C++,
>>>> but shouldn't there be a space before :, or even better :
>>>> be on the next line before m_min ?
>>>>
>>>>           Jakub
>>>>
>>

-------------- next part --------------
Condition chain (at ../../gcc/alias.c:2854) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/alias.c:2856) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/asan.c:2645) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/asan.h:166) with 12 conditions (9 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/asan.h:166) with 12 conditions (9 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/attribs.c:733) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/builtins.c:10683) with 6 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/builtins.c:2574) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/builtins.c:2600) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/builtins.c:3663) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/builtins.c:427) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/builtins.c:6717) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/builtins.c:8511) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/builtins.c:8567) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/builtins.c:8568) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/caller-save.c:1015) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/calls.c:1530) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/calls.c:1553) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/calls.c:2425) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/calls.c:630) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-convert.c:91) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:10425) with 10 conditions (10 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:10482) with 11 conditions (11 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:10543) with 9 conditions (9 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:10595) with 9 conditions (9 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:10646) with 8 conditions (8 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:10692) with 12 conditions (12 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:11270) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:11930) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:2095) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:5194) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:5304) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:5661) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:6356) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:6505) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:7400) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:7422) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:8110) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:8177) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:8309) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:8412) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-decl.c:9552) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-fold.c:265) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-fold.c:284) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-fold.c:356) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-fold.c:464) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-fold.c:515) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-fold.c:562) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-fold.c:615) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-fold.c:664) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-parser.c:12308) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-parser.c:17729) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-parser.c:2576) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-parser.c:351) with 8 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:10041) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:10398) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:10634) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:11449) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:12613) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:12901) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:13014) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:13082) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:13319) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:13351) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:13377) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:13977) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:1878) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:1912) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:1973) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:2238) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:2284) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:2323) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:2527) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:2814) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:3028) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:3177) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:3547) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:3812) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:4329) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:5083) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:5481) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:6263) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:6814) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:6818) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:7517) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:7525) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:7713) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:8205) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:9399) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:9656) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:9909) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/c-typeck.c:9984) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-ada-spec.c:2234) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-ada-spec.c:2264) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-ada-spec.c:2795) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-ada-spec.c:467) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-ada-spec.c:643) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-attribs.c:1305) with 6 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-attribs.c:1819) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-attribs.c:1819) with 8 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-attribs.c:1865) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-attribs.c:2470) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-attribs.c:2505) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-attribs.c:3492) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-attribs.c:3762) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-common.c:1334) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-common.c:2238) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-common.c:2899) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-common.c:3232) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-common.c:3640) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-common.c:3723) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-common.c:6107) with 10 conditions (10 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-format.c:2443) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-format.c:3652) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-format.c:5211) with 7 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-format.c:5228) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-lex.c:1067) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-lex.c:1090) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-lex.c:1116) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-lex.c:1139) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-lex.c:1371) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-lex.c:429) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-lex.c:546) with 8 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-omp.c:1563) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-omp.c:1757) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-omp.c:2117) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-opts.c:1458) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-pragma.c:142) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-pretty-print.c:1759) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-pretty-print.c:1952) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-pretty-print.c:401) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-warn.c:1442) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-warn.c:1696) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-warn.c:1917) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-warn.c:1941) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-warn.c:2008) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-warn.c:2014) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-warn.c:2165) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-warn.c:217) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-warn.c:2850) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-warn.c:491) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-warn.c:51) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c-family/c-warn.c:68) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cfgexpand.c:224) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cfgexpand.c:2500) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cfgexpand.c:2702) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cfgexpand.c:5018) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cfgexpand.c:5766) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cfgexpand.c:6119) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/c/gimple-parser.c:744) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cgraph.h:2618) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cgraph.h:2618) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cgraph.h:2618) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cgraph.h:2618) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cgraph.h:2618) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cgraph.h:2618) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cgraph.h:2618) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cgraph.h:2618) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:10659) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:11865) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:11880) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:11885) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:12945) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:14044) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:2756) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:3933) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:5544) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:6234) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:6687) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:6697) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:6779) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:8725) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:9390) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/combine.c:9584) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/constraints.md:233) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/constraints.md:234) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/constraints.md:234) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/driver-i386.c:642) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:12094) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:12964) with 6 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:14682) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:15004) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:15007) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:15699) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:16195) with 24 conditions (24 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:16207) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:1856) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:18686) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:18714) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:18740) with 12 conditions (10 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:18749) with 8 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:18755) with 16 conditions (16 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:18767) with 8 conditions (8 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:18779) with 8 conditions (8 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:18935) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:18936) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:18937) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:18938) with 6 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:18940) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:18974) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:18981) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:19026) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:19367) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:19383) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:20664) with 6 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:20666) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:20668) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:20670) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:20672) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:21282) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:21596) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:21645) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:22142) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:2280) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:2620) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:2882) with 14 conditions (14 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:3322) with 22 conditions (22 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:3562) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:3569) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:3573) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:3577) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:3699) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:3809) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:3832) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:3840) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:3849) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:9548) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.c:9703) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:10033) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:10035) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:10359) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:10778) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:10810) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:11420) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:12461) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:12510) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:14098) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:15563) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:15588) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:15640) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:15728) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:16754) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:16803) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:16889) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:1715) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:2711) with 9 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:3524) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:3633) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:374) with 22 conditions (22 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:395) with 22 conditions (22 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:4068) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:4611) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:6604) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:6854) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8206) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8208) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8412) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8491) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8526) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8528) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8571) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8573) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8621) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8690) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8692) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8746) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8748) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8845) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:8847) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-expand.c:9888) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-features.c:547) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386-features.c:826) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:1030) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:1053) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:1090) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:1119) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13092) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13092) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13105) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13105) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13115) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13180) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13285) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13285) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13298) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13298) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13304) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13332) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13400) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13417) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13421) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13499) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13499) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13606) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13606) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13619) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13619) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13676) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13678) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:1368) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13700) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13707) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13726) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13726) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13736) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13747) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13747) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13783) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13844) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13844) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13850) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13850) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13861) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13873) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13947) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13947) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13975) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13996) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:13996) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14049) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14049) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14095) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14216) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14216) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14246) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14246) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14258) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14260) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14349) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14349) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14451) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14451) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14757) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:1475) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14761) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14909) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:14913) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15068) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15068) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:1513) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15256) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:1533) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15370) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15431) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15431) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15444) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15444) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15576) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15613) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15613) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15790) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15790) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15849) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15849) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15995) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:15995) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:16131) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:16131) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:16184) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:16184) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:16289) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:16347) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:16347) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:16910) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:17151) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:17809) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:17932) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:18160) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:18162) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:18218) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:18264) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:18283) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:18340) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:18400) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:18419) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:18488) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:18564) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:18672) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:18899) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:1897) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:19448) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:19544) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:19703) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:19727) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:19804) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:2011) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:2063) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:21521) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:22332) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:2247) with 14 conditions (8 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:22566) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:2265) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:22705) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:2302) with 14 conditions (8 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:24826) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:24890) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:25143) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:26264) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:26656) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:26989) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:28447) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:28518) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:2884) with 13 conditions (10 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:3142) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:3161) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:3680) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:4350) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:4385) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:4420) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:4514) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:4548) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:471) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:493) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:5005) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:5299) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:5329) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:5383) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:5446) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:547) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:5508) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:555) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:5607) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:5646) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:5760) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:5800) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:614) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:640) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:742) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:767) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:818) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:826) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:839) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:856) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:860) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:860) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:885) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:885) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:910) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:910) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:912) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:912) with 7 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/i386.md:912) with 7 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/mmx.md:3314) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/predicates.md:1269) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/predicates.md:1290) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/predicates.md:1315) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/predicates.md:1324) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/predicates.md:1332) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/predicates.md:1488) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/predicates.md:1708) with 9 conditions (9 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/predicates.md:1768) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/predicates.md:1780) with 10 conditions (10 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/predicates.md:179) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/predicates.md:795) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/predicates.md:811) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/predicates.md:819) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/predicates.md:827) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1152) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1152) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1152) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1152) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1152) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1152) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1152) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1152) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1152) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1152) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1152) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1152) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1278) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1278) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1278) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1278) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1278) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1278) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1278) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1278) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1278) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1278) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1278) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:1278) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:15357) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:15357) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sse.md:20069) with 30 conditions (30 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sync.md:2662) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sync.md:2689) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sync.md:2785) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/sync.md:2810) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/x86-tune-sched-bd.c:167) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/x86-tune-sched-bd.c:460) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/i386/x86-tune-sched-bd.c:593) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/config/linux.c:30) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/convert.c:266) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/call.c:10531) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/call.c:10535) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/call.c:3041) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/call.c:3048) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/call.c:5572) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/call.c:5574) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/call.c:7118) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/call.c:7234) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/call.c:7242) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/call.c:818) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/call.c:861) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/call.c:9511) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/class.c:7344) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/class.c:7533) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/class.c:7543) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/constexpr.c:2853) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/constexpr.c:3178) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/constexpr.c:339) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/constexpr.c:4937) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/constexpr.c:4981) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/constexpr.c:5812) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/constexpr.c:5945) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/constraint.cc:496) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/cp-gimplify.c:1170) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/cp-gimplify.c:2136) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/cp-gimplify.c:768) with 8 conditions (8 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/cp-tree.h:645) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/cvt.c:133) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/cvt.c:134) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/cvt.c:276) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/cvt.c:277) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/cxx-pretty-print.c:1438) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/cxx-pretty-print.c:2846) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/cxx-pretty-print.c:641) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl2.c:1204) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl2.c:1349) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl2.c:2521) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl2.c:397) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl2.c:5416) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:1134) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:13571) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:13714) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:14240) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:15561) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:15671) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:17392) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:2316) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:2463) with 8 conditions (8 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:2914) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:5668) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:6573) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:7137) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:8107) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:8983) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/decl.c:970) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/error.c:1464) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/error.c:3085) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/friend.c:332) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/g++spec.c:230) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/init.c:184) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/init.c:2593) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/init.c:3386) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/init.c:459) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/lambda.c:1271) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/lex.c:693) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/logic.cc:385) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/logic.cc:427) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/logic.cc:494) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/logic.cc:535) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/mangle.c:2848) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/method.c:1299) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/method.c:1913) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/method.c:2060) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/method.c:3038) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/name-lookup.c:1023) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/name-lookup.c:2430) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/name-lookup.c:2641) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/name-lookup.c:6802) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/name-lookup.c:922) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:10707) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:11240) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:11722) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:13398) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:16131) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:17157) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:1729) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:20537) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:22443) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:22592) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:22955) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:24528) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:24640) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:26011) with 6 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:2719) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:2729) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:27787) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:28555) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:28577) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:28696) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:29720) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:30408) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:30443) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:30631) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:30773) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:31619) with 12 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:31975) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:33270) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:33277) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:37921) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:40639) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:42923) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/parser.c:7353) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:10451) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:12184) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:12872) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:19599) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:20240) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:20727) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:22523) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:27218) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:3455) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:5268) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:5818) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:5819) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:6004) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:7027) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:7069) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:9601) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/pt.c:9884) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cprop.c:1710) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/search.c:933) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/semantics.c:3773) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/semantics.c:4756) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/semantics.c:4822) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/semantics.c:4885) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/semantics.c:4953) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/semantics.c:5207) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/semantics.c:5239) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/semantics.c:5257) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/semantics.c:5598) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/semantics.c:5999) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/semantics.c:8083) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/tree.c:1745) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/tree.c:2220) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/tree.c:2253) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/tree.c:4392) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/tree.c:5260) with 8 conditions (8 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/tree.c:5388) with 8 conditions (8 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/tree.c:5408) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/tree.c:686) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck2.c:1022) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck2.c:315) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck2.c:467) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:2511) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:3330) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:4450) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:4468) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:5989) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:6362) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:6387) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:6478) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:6539) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:6689) with 7 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:7730) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:8401) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:9286) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:9354) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/typeck.c:9698) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cp/type-utils.h:44) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cse.c:1972) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cse.c:3351) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cse.c:3633) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cse.c:5831) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cse.c:6125) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cse.c:6190) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cselib.c:1448) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cselib.c:1633) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cselib.c:2003) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cselib.c:465) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cselib.c:881) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/cselib.c:901) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dbxout.c:1557) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/diagnostic-color.c:151) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/diagnostic-show-locus.c:1312) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/diagnostic-show-locus.c:700) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/diagnostic-show-locus.c:707) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dojump.c:1026) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2cfi.c:3190) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:14548) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:14558) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:14570) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:16910) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:17131) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:18192) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:18392) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:19803) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:20851) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:21670) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:25347) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:25561) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:29752) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:30070) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:5410) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:6852) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:7125) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:7922) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/dwarf2out.c:8613) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/emit-rtl.c:6391) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/emit-rtl.c:6412) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/emit-rtl.c:938) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/emit-rtl.c:946) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/emit-rtl.c:976) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/explow.c:463) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/explow.c:683) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expmed.c:1633) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expmed.c:1635) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expmed.c:1683) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expmed.c:1689) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expmed.c:1715) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expmed.c:1744) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expmed.c:2462) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expmed.c:2462) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expmed.c:6246) with 8 conditions (8 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expmed.c:757) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:10232) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:11221) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:11515) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:12242) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:2307) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:251) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:281) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:3760) with 10 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:429) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:429) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:431) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:6818) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:6835) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:7136) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:7280) with 7 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:729) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:7697) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:8538) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/expr.c:9919) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/final.c:1055) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/final.c:1431) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/final.c:1758) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/final.c:2318) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/final.c:2356) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/final.c:3325) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/final.c:3333) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/final.c:3743) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/final.c:3886) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:1022) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:1025) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:1039) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:1098) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:1112) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:126) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:136) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:145) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:159) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:182) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:240) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:328) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:403) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:518) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:630) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:682) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:69) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:782) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:786) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:790) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:794) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:823) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:828) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:886) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:889) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:890) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:896) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:937) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:940) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:95) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fixed-value.c:977) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:13260) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:13731) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:15076) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:1848) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:1913) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:2100) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:2105) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:2117) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:2279) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:2281) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:2435) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:2476) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:3933) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:412) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:434) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:4381) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:457) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:4636) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:5207) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:548) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:5717) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:6216) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:6227) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:6631) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:6977) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:800) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:8140) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:8376) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:8382) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:8391) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:8484) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:8607) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:9146) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const.c:9760) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const-call.c:662) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const-call.c:672) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fold-const-call.c:673) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/arith.c:1565) with 11 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/check.c:1467) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/check.c:324) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/check.c:326) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/check.c:3371) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/check.c:413) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/check.c:415) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/check.c:4560) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/check.c:7425) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/convert.c:103) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/cpp.c:596) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/decl.c:10269) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/decl.c:1061) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/decl.c:4052) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/decl.c:5369) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/decl.c:6061) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/decl.c:6073) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/decl.c:6155) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/dump-parse-tree.c:1205) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/dump-parse-tree.c:1811) with 8 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/dump-parse-tree.c:3182) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/dump-parse-tree.c:3485) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/expr.c:1896) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/expr.c:2135) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/expr.c:4869) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/frontend-passes.c:406) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/interface.c:1025) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/interface.c:1058) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/interface.c:1058) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/interface.c:2100) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/interface.c:4056) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/intrinsic.c:4881) with 6 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/intrinsic.c:953) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/io.c:455) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/iresolve.c:2569) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/match.c:173) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/match.c:214) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/match.c:2184) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/match.c:2862) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/match.c:2890) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/match.c:2999) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/module.c:1018) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/module.c:1040) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/module.c:3501) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/module.c:4474) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/module.c:5250) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/openmp.c:588) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/parse.c:1376) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/parse.c:1782) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/parse.c:338) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/parse.c:4213) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/parse.c:4377) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/primary.c:1155) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/primary.c:3833) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/resolve.c:11028) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/resolve.c:1551) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/resolve.c:15839) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/resolve.c:1687) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/resolve.c:2763) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/resolve.c:3969) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/resolve.c:4155) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/resolve.c:547) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/resolve.c:7750) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/resolve.c:7942) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/resolve.c:9326) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/scanner.c:1038) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/scanner.c:1553) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/scanner.c:1801) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/scanner.c:2180) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/scanner.c:2376) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/scanner.c:950) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/scanner.c:979) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/simplify.c:4151) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/simplify.c:6848) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/simplify.c:7591) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/simplify.c:7673) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/symbol.c:1765) with 7 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/symbol.c:3710) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/symbol.c:5214) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-array.c:5003) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans.c:343) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans.c:415) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-decl.c:2170) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-decl.c:5192) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-decl.c:5414) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-decl.c:5859) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-decl.c:888) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-decl.c:895) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-decl.c:912) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-expr.c:6304) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-expr.c:9612) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-intrinsic.c:4532) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-intrinsic.c:7234) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-intrinsic.c:7795) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-intrinsic.c:9183) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-intrinsic.c:9457) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-intrinsic.c:9501) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-io.c:2410) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-stmt.c:1734) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-stmt.c:6244) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-types.c:3238) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-types.c:567) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-types.c:614) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fortran/trans-types.c:821) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/function.c:1972) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/function.c:2226) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/function.c:2246) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/function.c:382) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/function.c:4945) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fwprop.c:373) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/fwprop.c:694) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:10073) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:1403) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:3116) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:3340) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:3348) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:5591) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:5943) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:5965) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:6211) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:6568) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:8511) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:8587) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:8683) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:8734) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:8746) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:8827) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcc.c:8847) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gcse.c:1367) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genattrtab.c:1203) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genattrtab.c:2663) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genautomata.c:2573) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genautomata.c:4586) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genautomata.c:6853) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genautomata.c:8861) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genautomata.c:951) with 8 conditions (8 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genextract.c:289) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genflags.c:61) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gengenrtl.c:256) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gengtype.c:1107) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gengtype.c:1107) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gengtype.c:2491) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gengtype.c:2491) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gengtype.c:3299) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gengtype.c:3299) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gengtype.c:3317) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gengtype.c:3317) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gengtype.h:344) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gengtype.h:344) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gengtype.h:344) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gengtype.h:344) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genmatch.c:1702) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genmatch.c:1772) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genmatch.c:2054) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genmatch.c:2918) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genmatch.c:3192) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genmatch.c:4265) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genmatch.c:4413) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genmodes.c:1497) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genoutput.c:763) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genpeep.c:250) with 8 conditions (8 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genpreds.c:794) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genrecog.c:746) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genrecog.c:751) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/genrecog.c:760) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gensupport.c:1634) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gensupport.c:1674) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gensupport.c:1975) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gensupport.c:3090) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gensupport.c:3256) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gensupport.c:3260) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gensupport.c:3265) with 8 conditions (8 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gensupport.c:829) with 7 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.c:1627) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.c:1674) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.c:1796) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.c:388) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-expr.h:87) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-expr.h:87) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-expr.h:87) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-expr.h:87) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-expr.h:87) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-expr.h:87) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-expr.h:96) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-expr.h:96) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-expr.h:96) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-expr.h:96) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-expr.h:96) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-fold.c:318) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-fold.c:367) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-fold.c:4052) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-fold.c:885) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-fold.c:886) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:2823) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:2823) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:2823) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:2823) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:2823) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:2823) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:2823) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:2823) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:2823) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:2823) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:2823) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:2823) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:2823) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:2823) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple.h:6549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-loop-interchange.cc:517) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-loop-versioning.cc:1234) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-match-head.c:976) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-pretty-print.c:386) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-pretty-print.c:607) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-pretty-print.c:672) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-backprop.c:444) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-evrp-analyze.c:112) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-evrp-analyze.c:168) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-isolate-paths.c:238) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-isolate-paths.c:480) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-isolate-paths.c:511) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-isolate-paths.c:82) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-split-paths.c:134) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-sprintf.c:1349) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-sprintf.c:1391) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-sprintf.c:2371) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-sprintf.c:3713) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-sprintf.c:3746) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-sprintf.c:955) with 8 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-store-merging.c:3615) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-store-merging.c:3645) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-strength-reduction.c:1535) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-strength-reduction.c:1536) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-strength-reduction.c:1759) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-ssa-strength-reduction.c:2137) with 7 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-streamer-in.c:216) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimple-walk.c:710) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimplify.c:10164) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimplify.c:12783) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimplify.c:12918) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimplify.c:14479) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimplify.c:2665) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimplify.c:3597) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimplify.c:4129) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimplify.c:6456) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimplify.c:869) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimplify.c:8829) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimplify.c:8837) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimplify.c:9133) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/gimplify.c:9253) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/godump.c:1196) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/godump.c:1209) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/godump.c:1307) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/godump.c:140) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/godump.c:826) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/godump.c:847) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/godump.c:975) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/hsa-brig.c:559) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/hsa-brig.c:965) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/hsa-common.h:958) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/hsa-common.h:958) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/hsa-dump.c:807) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/hsa-gen.c:1905) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/hsa-gen.c:3066) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/hsa-gen.c:3106) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/hsa-gen.c:3622) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/hsa-gen.c:3798) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/hsa-gen.c:924) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ifcvt.c:1700) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ifcvt.c:237) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/internal-fn.c:3603) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/internal-fn.c:529) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/internal-fn.c:555) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-cp.c:1372) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-cp.c:1987) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-devirt.c:1241) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-devirt.c:396) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-fnsummary.c:1158) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-fnsummary.c:1237) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-fnsummary.c:2337) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-icf-gimple.c:150) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-param-manipulation.c:1389) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-param-manipulation.c:1537) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-prop.c:1700) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-prop.c:2191) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-prop.c:2273) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-prop.c:315) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-prop.c:5548) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-prop.c:5663) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-split.c:374) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-split.c:668) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-sra.c:1651) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-sra.c:816) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ipa-utils.c:367) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ira-build.c:1839) with 8 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ira.c:1939) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ira-costs.c:1154) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/is-a.h:224) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/jump.c:709) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/jump.c:720) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/jump.c:730) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/jump.c:756) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/jump.c:899) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/jump.c:901) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/loop-invariant.c:329) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/loop-invariant.c:397) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/loop-iv.c:1139) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lower-subreg.c:1258) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lower-subreg.c:495) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lower-subreg.c:680) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lra.c:2272) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lra-constraints.c:1790) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lra-constraints.c:4104) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lra-constraints.c:4212) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lra-eliminations.c:759) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lra-remat.c:265) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto-cgraph.c:1505) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto-cgraph.c:1758) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto/lto.c:491) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto/lto-common.c:1172) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto/lto-common.c:1403) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto/lto-common.c:1655) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto/lto-common.c:302) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto/lto-lang.c:978) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto/lto-symtab.c:1007) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto/lto-symtab.c:445) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto/lto-symtab.c:464) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto-streamer-in.c:1456) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto-streamer-in.c:1492) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto-streamer-out.c:1075) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto-streamer-out.c:1728) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/lto-wrapper.c:424) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/mcf.c:151) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/mode-switching.c:350) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-expand.c:1823) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-expand.c:1915) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-expand.c:2761) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-expand.c:2778) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-expand.c:5631) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-expand.c:6108) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-expand.c:6534) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-expand.c:8900) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-grid.c:620) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-low.c:12923) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-low.c:1708) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-low.c:2832) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-low.c:2865) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-low.c:2913) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-low.c:415) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-low.c:621) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-low.c:8624) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-low.c:9515) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-simd-clone.c:1478) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-simd-clone.c:1523) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/omp-simd-clone.c:843) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs.c:1098) with 7 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs.c:1109) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs.c:1339) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs.c:1444) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs.c:2783) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs.c:3098) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs.c:6182) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs.c:7299) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs.c:7308) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs-libfuncs.c:307) with 8 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs-libfuncs.c:322) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs-libfuncs.c:335) with 8 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs-libfuncs.c:348) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs-libfuncs.c:361) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs-query.c:572) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs-query.c:704) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs-query.h:89) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/optabs-query.h:89) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/opt-problem.cc:275) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/opts.c:168) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/opts-common.c:1361) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/opts-common.c:1685) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/opts-common.c:384) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/postreload.c:1421) with 6 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/postreload.c:2145) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/postreload.c:2148) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/postreload.c:497) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/predict.c:1616) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/predict.c:2341) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/predict.c:2373) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/predict.c:2933) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/predict.c:4226) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/print-rtl.c:1807) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/print-rtl.c:511) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/print-tree.c:689) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/profile-count.c:159) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/read-md.c:272) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/read-md.c:272) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/read-md.c:467) with 6 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/read-md.c:467) with 6 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/read-md.c:605) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/read-md.c:605) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/read-md.c:636) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/read-md.c:636) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/read-rtl.c:1879) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/read-rtl.c:1889) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/read-rtl-function.c:1400) with 10 conditions (10 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/real.c:5019) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/real.c:5052) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/recog.c:1870) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/recog.c:2043) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ree.c:1168) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/regcprop.c:554) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reginfo.c:1065) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reginfo.c:368) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/regrename.c:1311) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reg-stack.c:1567) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload1.c:1221) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload1.c:1359) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload1.c:1449) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload1.c:1574) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload1.c:3020) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload1.c:5565) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload1.c:5625) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload1.c:6616) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload1.c:8460) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload1.c:8523) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload1.c:8775) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload.c:1228) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload.c:2133) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload.c:2863) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload.c:3100) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload.c:328) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload.c:4290) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload.c:4299) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload.c:4339) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload.c:4659) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload.c:5550) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload.c:6536) with 6 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload.c:6937) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/reload.c:7094) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/resource.c:1010) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/resource.c:1044) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/resource.c:286) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/resource.c:459) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/resource.c:464) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtlanal.c:149) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtlanal.c:149) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtlanal.c:149) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtlanal.c:1726) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtlanal.c:1915) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtlanal.c:2150) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtlanal.c:3524) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtlanal.c:5935) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtlanal.c:5953) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtlanal.c:6242) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtlanal.c:6253) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtlanal.c:6270) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:883) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:895) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:895) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:895) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/rtl.h:895) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/sanopt.c:516) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/sched-deps.c:2943) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/sched-deps.c:4584) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/sched-rgn.c:1801) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/sched-rgn.c:1826) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/sel-sched.c:2456) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:1271) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:1313) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:1684) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:1748) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:2234) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:2271) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:2373) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:2387) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:2666) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:2863) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:3026) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:3260) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:4082) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:4088) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:4209) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:4255) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:5022) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:5464) with 6 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:5542) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:5657) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:5796) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:5805) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:5807) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:5828) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:5830) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:5832) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:5958) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:6468) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:6753) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:6771) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:7222) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/simplify-rtx.c:7592) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/stor-layout.c:1214) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/stor-layout.c:439) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/stor-layout.c:466) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/targhooks.c:1320) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/targhooks.c:416) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/toplev.c:1576) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/toplev.c:2186) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/trans-mem.c:1419) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/trans-mem.c:375) with 10 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/trans-mem.c:421) with 10 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/trans-mem.c:588) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:10008) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:10031) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:10045) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:10788) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:10901) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:11174) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:11647) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:1168) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:13450) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:13781) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:13921) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:14695) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:14720) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:4278) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:4291) with 5 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:4483) with 8 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:5082) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:5733) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:5794) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:7064) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:7443) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:7445) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:9963) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.c:9994) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-cfg.c:3067) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-cfg.c:3212) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-cfg.c:3683) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-cfg.c:3687) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-cfg.c:5107) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-cfg.c:5235) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-cfg.c:6746) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-cfgcleanup.c:249) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-chrec.c:948) with 8 conditions (7 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-data-ref.c:5536) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-data-ref.c:713) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-dump.c:334) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-dump.c:517) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-eh.c:2763) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.h:4907) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.h:4907) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.h:4907) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.h:4907) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.h:4948) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.h:4948) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.h:5108) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.h:5108) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.h:5108) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.h:5108) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.h:5108) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.h:5108) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.h:5108) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree.h:5293) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-if-conv.c:1465) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-if-conv.c:956) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-inline.c:1072) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-inline.c:1083) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-inline.c:1268) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-inline.c:1272) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-inline.c:1750) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-inline.c:5411) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-inline.c:5427) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-inline.c:5548) with 6 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-nested.c:1001) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-nested.c:1732) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-nested.c:270) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-nested.c:2982) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-object-size.c:264) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-pretty-print.c:2252) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-scalar-evolution.c:3586) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-sra.c:1093) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-sra.c:1291) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-address.c:1058) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-alias.c:1625) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-alias.c:1642) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-alias.c:2095) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-alias.c:2610) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-alias.c:3033) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-alias.c:3034) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-alias.c:371) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-alias.c:383) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa.c:1002) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa.c:1259) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa.c:1527) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-ccp.c:1790) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-ccp.c:2647) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-ccp.c:278) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-ccp.c:2955) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-dce.c:822) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-dce.c:884) with 13 conditions (13 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-dom.c:1924) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-dse.c:997) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-forwprop.c:1211) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-forwprop.c:1565) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-forwprop.c:1566) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-forwprop.c:1635) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-forwprop.c:1664) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-forwprop.c:1693) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-forwprop.c:1709) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-forwprop.c:1739) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-forwprop.c:1920) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-forwprop.c:2363) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-forwprop.c:2735) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-forwprop.c:554) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-forwprop.c:703) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-live.c:352) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-loop-ch.c:458) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-loop-im.c:1174) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-loop-im.c:1255) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-loop-ivopts.c:3314) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-loop-ivopts.c:3958) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-loop-ivopts.c:4297) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-loop-ivopts.c:829) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-loop-manip.c:1024) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-loop-niter.c:2115) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-loop-niter.c:3534) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-loop-niter.c:3552) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-loop-niter.c:4651) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-math-opts.c:925) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-math-opts.c:942) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-math-opts.c:953) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssanames.c:557) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-operands.c:870) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-phiopt.c:1326) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-phiopt.c:1908) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-phiopt.c:1935) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-phiopt.c:486) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-pre.c:3127) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-propagate.c:1327) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-propagate.c:1436) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-reassoc.c:1983) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-reassoc.c:3482) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-reassoc.c:4443) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-reassoc.c:482) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-reassoc.c:5582) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-reassoc.c:948) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-sccvn.c:4290) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-sccvn.c:4297) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-sccvn.c:4326) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-sccvn.c:5376) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-sccvn.c:5471) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-sccvn.c:5562) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-sccvn.c:6620) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-sccvn.c:968) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-scopedtables.c:1123) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-scopedtables.c:1138) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-scopedtables.c:1145) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-scopedtables.c:402) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-scopedtables.c:594) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-structalias.c:3433) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-structalias.c:4420) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-structalias.c:6526) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-structalias.c:6617) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-threadbackward.c:751) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-threadbackward.c:84) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-threadedge.c:1096) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-threadedge.c:445) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-ssa-threadedge.c:504) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-streamer-in.c:151) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-streamer-in.c:245) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-streamer-out.c:122) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-streamer-out.c:207) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-tailcall.c:305) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-tailcall.c:332) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-tailcall.c:443) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-tailcall.c:648) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-data-refs.c:135) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-data-refs.c:4138) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-data-refs.c:4762) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-data-refs.c:5092) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-data-refs.c:5716) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-generic.c:1053) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-generic.c:1060) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-generic.c:1540) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-generic.c:1581) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-generic.c:1713) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-generic.c:1795) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-generic.c:1961) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-generic.c:365) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-loop.c:2528) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-loop.c:3873) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-patterns.c:2087) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-patterns.c:2221) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-patterns.c:3940) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-patterns.c:4060) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-slp.c:3315) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-slp.c:3594) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-slp.c:3603) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-stmts.c:11299) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-stmts.c:11645) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-stmts.c:12041) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-stmts.c:1607) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-stmts.c:5309) with 4 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-stmts.c:5365) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-stmts.c:5399) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-stmts.c:6046) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-stmts.c:6508) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-stmts.c:6517) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-stmts.c:6518) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-stmts.c:9810) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-stmts.c:9825) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vect-stmts.c:9836) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:1655) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:1728) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:1730) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:1882) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:1897) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:2008) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:2044) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:2121) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:2144) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:2158) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:2428) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:4059) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:430) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:4338) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:4349) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/tree-vrp.c:549) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ubsan.c:1377) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ubsan.c:1449) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/ubsan.c:2159) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/valtrack.c:129) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/value-range.cc:280) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/varasm.c:2418) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/varasm.c:6648) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/varasm.c:7093) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/varasm.c:7108) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/var-tracking.c:5277) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/var-tracking.c:5471) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/var-tracking.c:5509) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/var-tracking.c:6282) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/var-tracking.c:6433) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/var-tracking.c:7645) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/var-tracking.c:7649) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/var-tracking.c:798) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/var-tracking.c:9588) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/var-tracking.c:9847) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:123) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:1642) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:1864) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:2038) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:213) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:2236) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:3085) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:3567) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:4225) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:4277) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:4291) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:4298) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:4307) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:4313) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:4319) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:548) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vr-values.c:797) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../gcc/vtable-verify.c:581) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:10176) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:10341) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:10872) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:10872) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:10950) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:11033) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:11651) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:12575) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:12830) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:12995) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:12995) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:1300) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:1300) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:13532) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:13619) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:13633) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:13700) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:14286) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:14665) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:14729) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:15755) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:163) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:16450) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:16742) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:16762) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:16762) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:179) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:2086) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:2132) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:21498) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:21520) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:21542) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:2155) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:21564) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:21602) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:21624) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:2167) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:2227) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:2446) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:3361) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:3375) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:3444) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:4142) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:4261) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:4350) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:4382) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:4409) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:46003) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:46025) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:46047) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:46069) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:46107) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:46129) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:48643) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:48665) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:48687) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:48709) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:48747) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:48769) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:4914) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:4956) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:5261) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:5657) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:5657) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:569) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:57046) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:57331) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:5827) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:5876) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:5899) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:5911) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:5998) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:6339) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:6443) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:6443) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:64585) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:64768) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:6540) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:6608) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:7051) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:7101) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:7140) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:7465) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:7757) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:7757) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:7986) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:8616) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:8616) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:8690) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:8905) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:8905) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:9003) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at generic-match.c:9261) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:10029) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:10314) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:111641) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:111814) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:11311) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:11463) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:12025) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:12104) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:12630) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:12820) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:13840) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:14091) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:14242) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:14242) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:14872) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:14872) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:14940) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:15025) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:15039) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:15100) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:15925) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:16011) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:1636) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:1636) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:16429) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:16510) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:165) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:19245) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:20058) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:20516) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:20543) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:20543) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:217) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:2488) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:2537) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:2565) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:2577) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:2632) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:2698) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:2952) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:3993) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:4007) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:4068) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:40946) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:40965) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:40984) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:41003) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:41052) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:41071) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:4748) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:4885) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:5051) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:5189) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:5230) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:5552) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:5836) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:5836) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:6061) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:6110) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:6138) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:6150) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:6230) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:6765) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:6925) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:6925) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:695) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:7065) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:7117) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:7385) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:74680) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:7468) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:74699) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:74718) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:74737) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:74786) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:74805) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:7505) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:78233) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:78252) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:78271) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:78290) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:78339) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:78358) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:7878) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:8204) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:8204) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:8484) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:85573) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:86008) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:92316) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:92705) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:92857) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:92977) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:93097) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:93217) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:93337) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:93457) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:93577) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:93697) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:93817) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:93937) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:94057) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:94177) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:94297) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:94417) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:94537) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:94657) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:94777) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:94897) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:95017) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:95137) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:95257) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:95377) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:9546) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:9546) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:9621) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:9907) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gimple-match.c:9907) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gtype-desc.c:328) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at gtype-desc.c:3931) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at insn-attrtab.c:82) with 22 conditions (22 BBs) transformed into a switch statement.
Condition chain (at insn-dfatab.c:2693) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at insn-dfatab.c:2807) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at insn-dfatab.c:3179) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at insn-dfatab.c:3206) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at insn-dfatab.c:597) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at insn-dfatab.c:666) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/charset.c:1639) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/charset.c:1639) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/expr.c:1782) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/expr.c:1782) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/expr.c:373) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/expr.c:373) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/expr.c:393) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/expr.c:393) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/expr.c:413) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/expr.c:413) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/expr.c:433) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/expr.c:433) with 5 conditions (5 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/lex.c:1993) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/lex.c:1993) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/lex.c:2254) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/lex.c:2254) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/lex.c:2468) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/lex.c:2468) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/lex.c:2482) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/lex.c:2482) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/lex.c:3082) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/lex.c:3082) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/lex.c:3477) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/lex.c:3477) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/lex.c:3800) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/lex.c:3800) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/macro.c:1062) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/macro.c:1062) with 6 conditions (6 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/macro.c:1547) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/macro.c:1547) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/macro.c:2605) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/macro.c:2605) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/macro.c:2627) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/macro.c:2627) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/macro.c:2964) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/macro.c:2964) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/macro.c:702) with 11 conditions (10 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/macro.c:702) with 11 conditions (10 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/traditional.c:487) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/traditional.c:487) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../../libcpp/traditional.c:732) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../libcpp/traditional.c:732) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../libdecnumber/decContext.c:357) with 14 conditions (14 BBs) transformed into a switch statement.
Condition chain (at ../../libdecnumber/decNumber.c:2472) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../libdecnumber/decNumber.c:2630) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../libdecnumber/decNumber.c:2685) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../libdecnumber/decNumber.c:3322) with 10 conditions (10 BBs) transformed into a switch statement.
Condition chain (at ../../libdecnumber/decNumber.c:6089) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/argv.c:315) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/argv.c:315) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/cp-demangle.c:1771) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/cp-demangle.c:1771) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/cp-demangle.c:2306) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/cp-demangle.c:2306) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/cp-demangle.c:2741) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/cp-demangle.c:2741) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/cp-demangle.c:2914) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/cp-demangle.c:2914) with 5 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/cp-demangle.c:3274) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/cp-demangle.c:3274) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/cp-demangle.c:3295) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/cp-demangle.c:3295) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/d-demangle.c:939) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/d-demangle.c:939) with 4 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/rust-demangle.c:197) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ../../libiberty/rust-demangle.c:197) with 4 conditions (4 BBs) transformed into a switch statement.
Condition chain (at ./tm-preds.h:304) with 3 conditions (3 BBs) transformed into a switch statement.
Condition chain (at ../../zlib/deflate.c:1008) with 3 conditions (2 BBs) transformed into a switch statement.
Condition chain (at ../../zlib/gzread.c:195) with 4 conditions (3 BBs) transformed into a switch statement.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Add-if-chain-to-switch-conversion-pass.patch
Type: text/x-patch
Size: 34906 bytes
Desc: not available
URL: <http://gcc.gnu.org/pipermail/gcc-patches/attachments/20191115/104c776d/attachment.bin>


More information about the Gcc-patches mailing list