From 0d224e7f8870b6817a5c08c49aecc84c679c16ec Mon Sep 17 00:00:00 2001 From: Nate Lawson Date: Tue, 25 May 2004 03:06:37 +0000 Subject: Remove a warning of a constant that is too large. Change submitted to vendor. --- sys/contrib/dev/acpica/compiler/aslcompiler.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/contrib/dev') diff --git a/sys/contrib/dev/acpica/compiler/aslcompiler.y b/sys/contrib/dev/acpica/compiler/aslcompiler.y index 99b89ed5e991..18fe3af92800 100644 --- a/sys/contrib/dev/acpica/compiler/aslcompiler.y +++ b/sys/contrib/dev/acpica/compiler/aslcompiler.y @@ -2252,7 +2252,7 @@ QWordConstExpr ConstExprTerm : PARSEOP_ZERO {$$ = TrCreateValuedLeafNode (PARSEOP_ZERO, 0);} | PARSEOP_ONE {$$ = TrCreateValuedLeafNode (PARSEOP_ONE, 1);} - | PARSEOP_ONES {$$ = TrCreateValuedLeafNode (PARSEOP_ONES, 0xFFFFFFFFFFFFFFFF);} + | PARSEOP_ONES {$$ = TrCreateValuedLeafNode (PARSEOP_ONES, 0xFFFFFFFFFFFFFFFFull);} ; /* OptionalCount must appear before ByteList or an incorrect reduction will result */ -- cgit v1.3