@@ -2660,7 +2660,7 @@ struct TargetContextDescriptor {
2660
2660
2661
2661
using ContextDescriptor = TargetContextDescriptor<InProcess>;
2662
2662
2663
- inline bool isCImportedModuleName (StringRef name) {
2663
+ inline bool isCImportedModuleName (llvm:: StringRef name) {
2664
2664
// This does not include MANGLING_MODULE_CLANG_IMPORTER because that's
2665
2665
// used only for synthesized declarations and not actual imported
2666
2666
// declarations.
@@ -2757,7 +2757,7 @@ class TargetGenericRequirementDescriptor {
2757
2757
2758
2758
// / Retrieve the generic parameter that is the subject of this requirement,
2759
2759
// / as a mangled type name.
2760
- StringRef getParam () const {
2760
+ llvm:: StringRef getParam () const {
2761
2761
return swift::Demangle::makeSymbolicMangledNameStringRef (Param.get ());
2762
2762
}
2763
2763
@@ -2768,7 +2768,7 @@ class TargetGenericRequirementDescriptor {
2768
2768
}
2769
2769
2770
2770
// / Retrieve the right-hand type for a SameType or BaseClass requirement.
2771
- StringRef getMangledTypeName () const {
2771
+ llvm:: StringRef getMangledTypeName () const {
2772
2772
assert (getKind () == GenericRequirementKind::SameType ||
2773
2773
getKind () == GenericRequirementKind::BaseClass);
2774
2774
return swift::Demangle::makeSymbolicMangledNameStringRef (Type.get ());
@@ -2999,7 +2999,7 @@ struct TargetExtensionContextDescriptor final
2999
2999
3000
3000
using TrailingGenericContextObjects::getGenericContext;
3001
3001
3002
- StringRef getMangledExtendedContext () const {
3002
+ llvm:: StringRef getMangledExtendedContext () const {
3003
3003
return Demangle::makeSymbolicMangledNameStringRef (ExtendedContext.get ());
3004
3004
}
3005
3005
@@ -3223,13 +3223,13 @@ struct TargetOpaqueTypeDescriptor final
3223
3223
return (this
3224
3224
->template getTrailingObjects <RelativeDirectPointer<const char >>())[i];
3225
3225
}
3226
-
3227
- StringRef getUnderlyingTypeArgument (unsigned i) const {
3226
+
3227
+ llvm:: StringRef getUnderlyingTypeArgument (unsigned i) const {
3228
3228
assert (i < getNumUnderlyingTypeArguments ());
3229
3229
const char *ptr = getUnderlyingTypeArgumentMangledName (i);
3230
3230
return Demangle::makeSymbolicMangledNameStringRef (ptr);
3231
3231
}
3232
-
3232
+
3233
3233
static bool classof (const TargetContextDescriptor<Runtime> *cd) {
3234
3234
return cd->getKind () == ContextDescriptorKind::OpaqueType;
3235
3235
}
0 commit comments