diff options
Diffstat (limited to 'source/compiler/dtexpress.c')
-rw-r--r-- | source/compiler/dtexpress.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/source/compiler/dtexpress.c b/source/compiler/dtexpress.c index aa68cf1eeecd..e444b5cbd753 100644 --- a/source/compiler/dtexpress.c +++ b/source/compiler/dtexpress.c @@ -168,7 +168,7 @@ DtLookupLabel ( /* Global used for errors during parse and related functions */ -DT_FIELD *Gbl_CurrentField; +DT_FIELD *AslGbl_CurrentField; /****************************************************************************** @@ -196,7 +196,7 @@ DtResolveIntegerExpression ( DbgPrint (ASL_DEBUG_OUTPUT, "Full Integer expression: %s\n", Field->Value); - Gbl_CurrentField = Field; + AslGbl_CurrentField = Field; Result = DtEvaluateExpression (Field->Value); *ReturnValue = Result; @@ -251,7 +251,7 @@ DtDoOperator ( if (!RightValue) { DtError (ASL_ERROR, ASL_MSG_DIVIDE_BY_ZERO, - Gbl_CurrentField, NULL); + AslGbl_CurrentField, NULL); return (0); } @@ -263,7 +263,7 @@ DtDoOperator ( if (!RightValue) { DtError (ASL_ERROR, ASL_MSG_DIVIDE_BY_ZERO, - Gbl_CurrentField, NULL); + AslGbl_CurrentField, NULL); return (0); } @@ -349,7 +349,7 @@ DtDoOperator ( /* Unknown operator */ DtFatal (ASL_MSG_INVALID_EXPRESSION, - Gbl_CurrentField, NULL); + AslGbl_CurrentField, NULL); return (0); } @@ -396,7 +396,7 @@ DtResolveLabel ( if (!LabelField) { DtError (ASL_ERROR, ASL_MSG_UNKNOWN_LABEL, - Gbl_CurrentField, LabelString); + AslGbl_CurrentField, LabelString); return (0); } @@ -431,7 +431,7 @@ DtDetectAllLabels ( UINT32 TableOffset; - TableOffset = Gbl_CurrentTableOffset; + TableOffset = AslGbl_CurrentTableOffset; GenericField = FieldList; /* @@ -485,8 +485,8 @@ DtInsertLabelField ( "DtInsertLabelField: Found Label : %s at output table offset %X\n", Field->Value, Field->TableOffset); - Field->NextLabel = Gbl_LabelList; - Gbl_LabelList = Field; + Field->NextLabel = AslGbl_LabelList; + AslGbl_LabelList = Field; } @@ -519,7 +519,7 @@ DtLookupLabel ( /* Search global list */ - LabelField = Gbl_LabelList; + LabelField = AslGbl_LabelList; while (LabelField) { if (!strcmp (Name, LabelField->Value)) |