diff options
author | njl <njl@FreeBSD.org> | 2004-05-25 03:06:37 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2004-05-25 03:06:37 +0000 |
commit | 2c647855a35f9acba61fcd2f2ba2177ac5facf8d (patch) | |
tree | febf1e892e124ee96a978246b33fa4e925ebb577 /sys/contrib/dev/acpica | |
parent | 20762a623d310b3cd8737634c2365c70e6e16adc (diff) | |
parent | 0d6049326d5b82458b0b44609a92236a360ace02 (diff) | |
download | FreeBSD-src-2c647855a35f9acba61fcd2f2ba2177ac5facf8d.zip FreeBSD-src-2c647855a35f9acba61fcd2f2ba2177ac5facf8d.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r129694,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'sys/contrib/dev/acpica')
-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 99b89ed..18fe3af 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 */ |