diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2010-04-28 21:50:57 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2010-04-28 21:50:57 +0000 |
commit | 5b663f0c698a9ecf7e562f7f7f730d056e499b5f (patch) | |
tree | 8e0094680041ac8d48075e0787478ffeb5d61682 /compiler/aslcompile.c | |
parent | 9a8b5e6355e39ba0602a7f9484dca40f429fe6b0 (diff) |
Notes
Diffstat (limited to 'compiler/aslcompile.c')
-rw-r--r-- | compiler/aslcompile.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/aslcompile.c b/compiler/aslcompile.c index 90e90991b7e93..d6cb8adc7387a 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 = " * "; } |