mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
Move assert above first use of variable that we'd be asserting on.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187899 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
28a07c868e
commit
ee0dcf4b3e
@ -580,10 +580,10 @@ static void writeFragment(const MCAssembler &Asm, const MCAsmLayout &Layout,
|
||||
case MCFragment::FT_Align: {
|
||||
++stats::EmittedAlignFragments;
|
||||
const MCAlignFragment &AF = cast<MCAlignFragment>(F);
|
||||
uint64_t Count = FragmentSize / AF.getValueSize();
|
||||
|
||||
assert(AF.getValueSize() && "Invalid virtual align in concrete fragment!");
|
||||
|
||||
uint64_t Count = FragmentSize / AF.getValueSize();
|
||||
|
||||
// FIXME: This error shouldn't actually occur (the front end should emit
|
||||
// multiple .align directives to enforce the semantics it wants), but is
|
||||
// severe enough that we want to report it. How to handle this?
|
||||
|
Loading…
Reference in New Issue
Block a user