mirror of
https://github.com/acpica/acpica/
synced 2025-01-16 14:29:18 +03:00
Overhaul of the NATIVE* types. renamed to ACPI_NATIVE*, eliminated
use of MAX32 and MIN32 types date 2002.12.16.23.55.00; author rmoore1; state Exp;
This commit is contained in:
parent
bff7332996
commit
b78b71ae44
@ -3,7 +3,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: aslcompiler.y - Bison input file (ASL grammar and actions)
|
||||
* $Revision: 1.69 $
|
||||
* $Revision: 1.70 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -2207,7 +2207,7 @@ Integer
|
||||
;
|
||||
|
||||
String
|
||||
: PARSEOP_STRING_LITERAL {$$ = TrCreateValuedLeafNode (PARSEOP_STRING_LITERAL, (NATIVE_INT) AslCompilerlval.s);}
|
||||
: PARSEOP_STRING_LITERAL {$$ = TrCreateValuedLeafNode (PARSEOP_STRING_LITERAL, (ACPI_NATIVE_INT) AslCompilerlval.s);}
|
||||
;
|
||||
|
||||
ConstTerm
|
||||
@ -2694,11 +2694,11 @@ WordIOTerm
|
||||
|
||||
NameString
|
||||
: NameSeg {}
|
||||
| PARSEOP_NAMESTRING {$$ = TrCreateValuedLeafNode (PARSEOP_NAMESTRING, (NATIVE_INT) AslCompilerlval.s);}
|
||||
| PARSEOP_NAMESTRING {$$ = TrCreateValuedLeafNode (PARSEOP_NAMESTRING, (ACPI_NATIVE_INT) AslCompilerlval.s);}
|
||||
;
|
||||
|
||||
NameSeg
|
||||
: PARSEOP_NAMESEG {$$ = TrCreateValuedLeafNode (PARSEOP_NAMESEG, (NATIVE_INT) AslCompilerlval.s);}
|
||||
: PARSEOP_NAMESEG {$$ = TrCreateValuedLeafNode (PARSEOP_NAMESEG, (ACPI_NATIVE_INT) AslCompilerlval.s);}
|
||||
;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user