SW500011 Microchip Technology, SW500011 Datasheet - Page 312

HI-TECH X PRO FOR PIC32

SW500011

Manufacturer Part Number
SW500011
Description
HI-TECH X PRO FOR PIC32
Manufacturer
Microchip Technology
Type
Compilerr
Series
PIC32r
Datasheet

Specifications of SW500011

No. Of User Licenses
1
Supported Families
PIC32
Core Architecture
PIC
Supported Hosts
Windows XP, Vista, Linux, Mac OS X
Software Edition
Professional
Kit Contents
Software And Docs
Tool Type
Compiler
Lead Free Status / RoHS Status
Not applicable / Not applicable
For Use With/related Products
PIC32 Series
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
Other names
032
778-1007
778-1007
(243) inappropriate break/continue
A break or continue statement has been found that is not enclosed in an appropriate control struc-
ture. A continue can only be used inside a while, for or do while loop, while break can only be
used inside those loops or a switch statement, e.g.:
(244) "default" case redefined
There is only allowed to be one default label in a switch statement. You have more than one, e.g.:
(245) "default" case not in switch
A label has been encountered called default but it is not enclosed by a switch statement. A
default label is only legal inside the body of a switch statement.
braces in the switch code which would prematurely terminate the switch statement. See example
for Error Message ’case’ not in switch on page ??.
(246) case label not in switch
A case label has been encountered, but there is no enclosing switch statement. A case label may
only appear inside the body of a switch statement.
in the switch code which would prematurely terminate the switch statement, e.g.:
312
If there is a switch statement before this default label, there may be one too many closing
If there is a switch statement before this case label, there may be one too many closing braces
switch(input) {
switch(a) {
default:
default:
case 0:
b = 9;
break;
b = 10;
break;
if(output == 0)
} /* oops! this shouldn’t be here and closed the switch */
break;
input = 0xff;
/* if this is the default case... */
/* then what is this? */
/* this should be inside the switch */
Error and Warning Messages
(Parser)
(Parser)
(Parser)
(Parser)

Related parts for SW500011