We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72d8250 commit 8403b20Copy full SHA for 8403b20
llvm/lib/Target/Z80/MCTargetDesc/Z80TargetStreamer.cpp
@@ -32,8 +32,7 @@ void Z80TargetAsmStreamer::emitLabel(MCSymbol *Symbol) {
32
33
void Z80TargetAsmStreamer::emitAlign(Align Alignment) {
34
if (auto Mask = Alignment.value() - 1)
35
- OS << "\trb\t" << Mask << " - ($ - $$ + " << Mask << ") and not " << Mask
36
- << "\n";
+ OS << "\trb\t($$ - $) and " << Mask << '\n';
37
}
38
39
void Z80TargetAsmStreamer::emitBlock(uint64_t NumBytes) {
0 commit comments