std::string getOffloadingKindPrefix() const;
/// Return a string that can be used as prefix in order to generate unique
/// files for each offloading kind.
- std::string getOffloadingFileNamePrefix(StringRef NormalizedTriple) const;
+ std::string
+ getOffloadingFileNamePrefix(llvm::StringRef NormalizedTriple) const;
/// Set the device offload info of this action and propagate it to its
/// dependences.
}
std::string
-Action::getOffloadingFileNamePrefix(StringRef NormalizedTriple) const {
+Action::getOffloadingFileNamePrefix(llvm::StringRef NormalizedTriple) const {
// A file prefix is only generated for device actions and consists of the
// offload kind and triple.
if (!OffloadingDeviceKind)