File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
llvm/lib/Target/AArch64/MCTargetDesc Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -79,8 +79,7 @@ StringRef AArch64MCExpr::getVariantKindName() const {
7979}
8080
8181void AArch64MCExpr::printImpl (raw_ostream &OS, const MCAsmInfo *MAI) const {
82- if (getKind () != VK_NONE)
83- OS << getVariantKindName ();
82+ OS << getVariantKindName ();
8483 Expr->print (OS, MAI);
8584}
8685
Original file line number Diff line number Diff line change @@ -22,8 +22,6 @@ namespace llvm {
2222class AArch64MCExpr : public MCTargetExpr {
2323public:
2424 enum VariantKind {
25- VK_NONE = 0x000 ,
26-
2725 // Symbol locations specifying (roughly speaking) what calculation should be
2826 // performed to construct the final address for the relocated
2927 // symbol. E.g. direct, via the GOT, ...
You can’t perform that action at this time.
0 commit comments