mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-27 14:34:58 +00:00
Add assert to catch an attempt to emit .byte 256
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121402 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
193c3acbe5
commit
dea914bed9
@ -47,7 +47,8 @@ void MCStreamer::EmitDwarfSetLineAddr(int64_t LineDelta,
|
||||
/// pass in a MCExpr for constant integers.
|
||||
void MCStreamer::EmitIntValue(uint64_t Value, unsigned Size,
|
||||
unsigned AddrSpace) {
|
||||
assert(Size <= 8);
|
||||
assert(Size <= 8 && "Invalid size");
|
||||
assert(!(Size == 1 && (signed)Value > 255) && "Invalid size");
|
||||
char buf[8];
|
||||
// FIXME: Endianness assumption.
|
||||
for (unsigned i = 0; i != Size; ++i)
|
||||
|
Loading…
x
Reference in New Issue
Block a user