Changeset 69044 in vbox for trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace
- Timestamp:
- Oct 11, 2017 4:06:39 PM (7 years ago)
- Location:
- trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_lex.l
r64054 r69044 760 760 yypcb->pcb_hold = yypcb->pcb_list; 761 761 yypcb->pcb_list = NULL; 762 /*FALLTHRU*/762 RT_FALL_THRU(); 763 763 case YYS_EXPR: 764 764 BEGIN(S0); -
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_options.c
r63435 r69044 642 642 case 'T': 643 643 mul *= 1024; 644 /*FALLTHRU*/644 RT_FALL_THRU(); 645 645 case 'g': 646 646 case 'G': 647 647 mul *= 1024; 648 /*FALLTHRU*/648 RT_FALL_THRU(); 649 649 case 'm': 650 650 case 'M': 651 651 mul *= 1024; 652 /*FALLTHRU*/652 RT_FALL_THRU(); 653 653 case 'k': 654 654 case 'K': 655 655 mul *= 1024; 656 /*FALLTHRU*/656 RT_FALL_THRU(); 657 657 default: 658 658 break; -
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_parser.c
r62835 r69044 578 578 dnp->dn_expr = NULL; 579 579 } 580 /*FALLTHRU*/580 RT_FALL_THRU(); 581 581 case DT_NODE_OP2: 582 582 if (dnp->dn_left != NULL) { … … 1658 1658 if (ctf_type_size(dtt.dtt_ctfp, type) != 0) 1659 1659 break; /* proceed to declaring */ 1660 /*FALLTHRU*/1660 RT_FALL_THRU(); 1661 1661 case CTF_K_FORWARD: 1662 1662 xyerror(D_DECL_INCOMPLETE, … … 1818 1818 (64 - dt_node_type_size(cp) * NBBY); 1819 1819 } 1820 /*FALLTHRU*/1820 RT_FALL_THRU(); 1821 1821 case DT_TOK_IPOS: 1822 1822 return (cp); … … 3612 3612 } 3613 3613 3614 /*FALLTHRU*/3614 RT_FALL_THRU(); 3615 3615 3616 3616 case DT_TOK_DOT:
Note:
See TracChangeset
for help on using the changeset viewer.