From: Devang Patel Date: Thu, 9 Dec 2010 19:26:21 +0000 (+0000) Subject: Add assert to catch an attempt to emit .byte 256 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=dea914bed9fb1d5c08e944557989ccddb6849000;p=oota-llvm.git 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 --- diff --git a/lib/MC/MCStreamer.cpp b/lib/MC/MCStreamer.cpp index 096cea7bc7f..e003a953ade 100644 --- a/lib/MC/MCStreamer.cpp +++ b/lib/MC/MCStreamer.cpp @@ -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)