summaryrefslogtreecommitdiffstats
path: root/source/compiler/aslsupport.l
diff options
context:
space:
mode:
authorjkim <jkim@FreeBSD.org>2013-02-15 19:12:35 +0000
committerjkim <jkim@FreeBSD.org>2013-02-15 19:12:35 +0000
commitbd5edd68a8fda8df18c688919e100f7f1df5ad6b (patch)
tree60bd49061ad572a9f0cd0955d91e302983ee6939 /source/compiler/aslsupport.l
parent713ce6817a3fbfd4bf492408e97d9b7468853c17 (diff)
downloadFreeBSD-src-bd5edd68a8fda8df18c688919e100f7f1df5ad6b.zip
FreeBSD-src-bd5edd68a8fda8df18c688919e100f7f1df5ad6b.tar.gz
Import ACPICA 20130215.
Diffstat (limited to 'source/compiler/aslsupport.l')
-rw-r--r--source/compiler/aslsupport.l10
1 files changed, 9 insertions, 1 deletions
diff --git a/source/compiler/aslsupport.l b/source/compiler/aslsupport.l
index 90af049..52389ee 100644
--- a/source/compiler/aslsupport.l
+++ b/source/compiler/aslsupport.l
@@ -403,6 +403,9 @@ count (
TotalKeywords++;
TotalExecutableOpcodes++;
break;
+
+ default:
+ break;
}
for (i = 0; (yytext[i] != 0) && (yytext[i] != EOF); i++)
@@ -570,7 +573,6 @@ AslDoStringLiteral (
AslInsertLineBuffer (StringChar);
DoCharacter:
-
switch (State)
{
case ASL_NORMAL_CHAR:
@@ -590,6 +592,9 @@ DoCharacter:
/* String terminator */
goto CompletedString;
+
+ default:
+ break;
}
break;
@@ -748,6 +753,9 @@ DoCharacter:
ConvertBuffer[i] = StringChar;
i++;
continue;
+
+ default:
+ break;
}
/* Save the finished character */
OpenPOWER on IntegriCloud