mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
[MC] Ignore VK_WEAKREF in MCValue::getAccessVariant
MCSymbolRefExpr::getVariantKindForName does not return VK_WEAKREF, so this code path is not exercised. Moreoever, .weakref is probably a feature that nobody uses.
This commit is contained in:
parent
694df893ac
commit
3185da15b2
@ -54,8 +54,5 @@ MCSymbolRefExpr::VariantKind MCValue::getAccessVariant() const {
|
|||||||
if (!A)
|
if (!A)
|
||||||
return MCSymbolRefExpr::VK_None;
|
return MCSymbolRefExpr::VK_None;
|
||||||
|
|
||||||
MCSymbolRefExpr::VariantKind Kind = A->getKind();
|
return A->getKind();
|
||||||
if (Kind == MCSymbolRefExpr::VK_WEAKREF)
|
|
||||||
return MCSymbolRefExpr::VK_None;
|
|
||||||
return Kind;
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user