[llvm] e642ed8 - [AVR] Remove initializeVariantKinds
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 14 21:38:07 PDT 2025
Author: Fangrui Song
Date: 2025-03-14T21:38:02-07:00
New Revision: e642ed8b4ac70264454d7e0a8bec787c4f2b435a
URL: https://github.com/llvm/llvm-project/commit/e642ed8b4ac70264454d7e0a8bec787c4f2b435a
DIFF: https://github.com/llvm/llvm-project/commit/e642ed8b4ac70264454d7e0a8bec787c4f2b435a.diff
LOG: [AVR] Remove initializeVariantKinds
AVR doesn't use @reloc or ARM-style sym(reloc) supported by
AsmParser.cpp. Instead, AVRAsmParser parses the operator (e.g.
pm_lo8(...))
Added:
Modified:
llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp b/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
index b6e692277a230..d37e39c51e159 100644
--- a/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
+++ b/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
@@ -11,19 +11,11 @@
//===----------------------------------------------------------------------===//
#include "AVRMCAsmInfo.h"
-#include "AVRMCExpr.h"
#include "llvm/MC/MCExpr.h"
#include "llvm/TargetParser/Triple.h"
using namespace llvm;
-const MCAsmInfo::VariantKindDesc variantKindDescs[] = {
- {AVRMCExpr::VK_DIFF16, "
diff 16"}, {AVRMCExpr::VK_DIFF32, "
diff 32"},
- {AVRMCExpr::VK_DIFF8, "
diff 8"}, {AVRMCExpr::VK_HI8, "hi8"},
- {AVRMCExpr::VK_HH8, "hlo8"}, {AVRMCExpr::VK_LO8, "lo8"},
- {AVRMCExpr::VK_PM, "pm"},
-};
-
AVRMCAsmInfo::AVRMCAsmInfo(const Triple &TT, const MCTargetOptions &Options) {
CodePointerSize = 2;
CalleeSaveStackSlotSize = 2;
@@ -33,5 +25,4 @@ AVRMCAsmInfo::AVRMCAsmInfo(const Triple &TT, const MCTargetOptions &Options) {
PrivateLabelPrefix = ".L";
UsesELFSectionDirectiveForBSS = true;
SupportsDebugInformation = true;
- initializeVariantKinds(variantKindDescs);
}
More information about the llvm-commits
mailing list