aboutsummaryrefslogtreecommitdiffstats
path: root/asn1c
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2006-03-16 10:03:35 +0000
committerLev Walkin <vlm@lionet.info>2006-03-16 10:03:35 +0000
commitd370e9f57ecc00836b18bee44af026421bd9d63a (patch)
treeaa0270b48a6b915337d34cb1664eac0ab017d5a0 /asn1c
parent57074f10d3e9b089582dde25e0d3ae33be913302 (diff)
parsing WITH SYNTAX clauses
Diffstat (limited to 'asn1c')
-rw-r--r--asn1c/asn1c.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/asn1c/asn1c.c b/asn1c/asn1c.c
index c097d556..cf1ecb9c 100644
--- a/asn1c/asn1c.c
+++ b/asn1c/asn1c.c
@@ -129,8 +129,10 @@ main(int ac, char **av) {
exit(EX_USAGE);
}
asn1_compiler_flags |= A1C_PDU_AUTO;
+ } else if(strcmp(optarg, "rint-class-matrix") == 0) {
+ asn1_printer_flags |= APF_PRINT_CLASS_MATRIX;
} else if(strcmp(optarg, "rint-constraints") == 0) {
- asn1_printer_flags |= APF_DEBUG_CONSTRAINTS;
+ asn1_printer_flags |= APF_PRINT_CONSTRAINTS;
} else if(strcmp(optarg, "rint-lines") == 0) {
asn1_printer_flags |= APF_LINE_COMMENTS;
} else {
@@ -459,6 +461,7 @@ usage(const char *av0) {
"\n"
" -print-constraints Explain subtype constraints (debug)\n"
+" -print-class-matrix Print out the collected object class matrix (debug)\n"
" -print-lines Generate \"-- #line\" comments in -E output\n"
,