diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2016-08-01 21:20:41 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2016-08-01 21:20:41 +0000 |
commit | 8bc6ab62dbdb3e8b0d2253e0440f6f58ac9afd3d (patch) | |
tree | b2316b6fda5368bb277671853a71b2a758582b05 /source/compiler/asloptions.c | |
parent | 4d46bb7749ef0cf25eb2b25f2d7324023cb754b4 (diff) |
Notes
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; |