mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Remove extraneous ; to make some versions of bison happy.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33541 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
758e7b1ed8
commit
7e97288b62
@ -1474,7 +1474,7 @@ using namespace llvm;
|
||||
// Handle constant integer size restriction and conversion...
|
||||
//
|
||||
INTVAL
|
||||
: SINTVAL;
|
||||
: SINTVAL
|
||||
| UINTVAL {
|
||||
if ($1 > (uint32_t)INT32_MAX) // Outside of my range!
|
||||
error("Value too large for type");
|
||||
@ -1483,7 +1483,7 @@ INTVAL
|
||||
;
|
||||
|
||||
EINT64VAL
|
||||
: ESINT64VAL; // These have same type and can't cause problems...
|
||||
: ESINT64VAL // These have same type and can't cause problems...
|
||||
| EUINT64VAL {
|
||||
if ($1 > (uint64_t)INT64_MAX) // Outside of my range!
|
||||
error("Value too large for type");
|
||||
@ -2351,7 +2351,7 @@ AsmBlock
|
||||
;
|
||||
|
||||
BigOrLittle
|
||||
: BIG { $$ = Module::BigEndian; };
|
||||
: BIG { $$ = Module::BigEndian; }
|
||||
| LITTLE { $$ = Module::LittleEndian; }
|
||||
;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user