diff options
author | Nate Lawson <njl@FreeBSD.org> | 2004-05-25 03:06:37 +0000 |
---|---|---|
committer | Nate Lawson <njl@FreeBSD.org> | 2004-05-25 03:06:37 +0000 |
commit | a86c577a6d5dd124633c6972fe3916646264a436 (patch) | |
tree | febf1e892e124ee96a978246b33fa4e925ebb577 /sys/contrib/dev | |
parent | f0dfade9f719b6812776cdaa86b20a81f4c81ccf (diff) | |
parent | 0d224e7f8870b6817a5c08c49aecc84c679c16ec (diff) | |
download | src-a86c577a6d5dd124633c6972fe3916646264a436.tar.gz src-a86c577a6d5dd124633c6972fe3916646264a436.zip |
This commit was generated by cvs2svn to compensate for changes in r129694,
which included commits to RCS files with non-trunk default branches.
Notes
Notes:
svn path=/head/; revision=129695
Diffstat (limited to 'sys/contrib/dev')
-rw-r--r-- | sys/contrib/dev/acpica/compiler/aslcompiler.y | 2 |
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 */ |