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 56412cc commit 12c53c6Copy full SHA for 12c53c6
llvm/lib/Target/M68k/MCTargetDesc/M68kAsmBackend.cpp
@@ -49,7 +49,7 @@ class M68kAsmBackend : public MCAsmBackend {
49
M68kAsmBackend(const Target &T, const MCSubtargetInfo &STI)
50
: MCAsmBackend(llvm::endianness::big),
51
Allows32BitBranch(llvm::StringSwitch<bool>(STI.getCPU())
52
- .CasesLower("m68020", "m68030", "m68040", true)
+ .CasesLower({"m68020", "m68030", "m68040"}, true)
53
.Default(false)) {}
54
55
void applyFixup(const MCFragment &, const MCFixup &, const MCValue &,
0 commit comments