diff options
Diffstat (limited to 'source/compiler/asloptions.c')
-rw-r--r-- | source/compiler/asloptions.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source/compiler/asloptions.c b/source/compiler/asloptions.c index d19c3f3f64bd..85f5aef8dfc1 100644 --- a/source/compiler/asloptions.c +++ b/source/compiler/asloptions.c @@ -275,11 +275,25 @@ AslDoOptions ( { case '^': + /* Get the required argument */ + + if (AcpiGetoptArgument (argc, argv)) + { + return (-1); + } + Gbl_DoCompile = FALSE; break; case 'a': + /* Get the required argument */ + + if (AcpiGetoptArgument (argc, argv)) + { + return (-1); + } + Gbl_DoCompile = FALSE; Gbl_DisassembleAll = TRUE; break; |