aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Lawson <njl@FreeBSD.org>2004-05-25 03:06:37 +0000
committerNate Lawson <njl@FreeBSD.org>2004-05-25 03:06:37 +0000
commit0d224e7f8870b6817a5c08c49aecc84c679c16ec (patch)
tree4bcb0ce1a4aafe32e06c95d6134f515654dc4bf3
parenta5a81f7c89bfa1232e53c5594bfb6a005e4542ce (diff)
downloadsrc-0d224e7f8870b6817a5c08c49aecc84c679c16ec.tar.gz
src-0d224e7f8870b6817a5c08c49aecc84c679c16ec.zip
Remove a warning of a constant that is too large. Change submitted to
vendor.
Notes
Notes: svn path=/vendor-sys/acpica/dist/; revision=129694
-rw-r--r--sys/contrib/dev/acpica/compiler/aslcompiler.y2
1 files changed, 1 insertions, 1 deletions
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 */