Controls the generation of switch tables.
#pragma switch_tables on | off | reset
When on , the compiler translates switch statements into tables of addresses where each address in the list corresponds to a case statement. Using tables improves the performance of switch statements but may increase the size of the executable code if there are many case statements or if the case label values are not contiguous.
When off , the compiler translates switch statements into a series of comparisons, one comparison for each case statement.