aboutsummaryrefslogtreecommitdiff
path: root/compiler/aslcompile.c
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/aslcompile.c')
-rw-r--r--compiler/aslcompile.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/aslcompile.c b/compiler/aslcompile.c
index 90e90991b7e9..d6cb8adc7387 100644
--- a/compiler/aslcompile.c
+++ b/compiler/aslcompile.c
@@ -177,7 +177,8 @@ AslCompilerSignon (
{
Prefix = "; ";
}
- else if (Gbl_HexOutputFlag == HEX_OUTPUT_C)
+ else if ((Gbl_HexOutputFlag == HEX_OUTPUT_C) ||
+ (Gbl_HexOutputFlag == HEX_OUTPUT_ASL))
{
FlPrintFile (ASL_FILE_HEX_OUTPUT, "/*\n");
Prefix = " * ";
@@ -265,7 +266,8 @@ AslCompilerFileHeader (
{
Prefix = "; ";
}
- else if (Gbl_HexOutputFlag == HEX_OUTPUT_C)
+ else if ((Gbl_HexOutputFlag == HEX_OUTPUT_C) ||
+ (Gbl_HexOutputFlag == HEX_OUTPUT_ASL))
{
Prefix = " * ";
}