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 {
79
79
}
80
80
81
81
void AArch64MCExpr::printImpl (raw_ostream &OS, const MCAsmInfo *MAI) const {
82
- if (getKind () != VK_NONE)
83
- OS << getVariantKindName ();
82
+ OS << getVariantKindName ();
84
83
Expr->print (OS, MAI);
85
84
}
86
85
Original file line number Diff line number Diff line change @@ -22,8 +22,6 @@ namespace llvm {
22
22
class AArch64MCExpr : public MCTargetExpr {
23
23
public:
24
24
enum VariantKind {
25
- VK_NONE = 0x000 ,
26
-
27
25
// Symbol locations specifying (roughly speaking) what calculation should be
28
26
// performed to construct the final address for the relocated
29
27
// symbol. E.g. direct, via the GOT, ...
You can’t perform that action at this time.
0 commit comments