aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/TextAPI/Target.cpp
diff options
context:
space:
mode:
authorCyndy Ishida <cyndy_ishida@apple.com>2021-06-03 20:53:06 -0700
committerCyndy Ishida <cyndy_ishida@apple.com>2021-06-03 21:10:51 -0700
commit5337c7550d31597f04bcca0c49e1ce62000cc59b (patch)
tree29135244516abb5ea8b053b39612cd44b7d090b9 /llvm/lib/TextAPI/Target.cpp
parentd71ff907ef23eaef86ad66ba2d711e4986cd6cb2 (diff)
downloadllvm-5337c7550d31597f04bcca0c49e1ce62000cc59b.zip
llvm-5337c7550d31597f04bcca0c49e1ce62000cc59b.tar.gz
llvm-5337c7550d31597f04bcca0c49e1ce62000cc59b.tar.bz2
Revert "[llvm] llvm-tapi-diff"
This reverts commit d1d36f7ad2ae82bea8a6fcc40d6c42a72e21f096. Reverting this patch to investigate linux bot failures + fix with author offline
Diffstat (limited to 'llvm/lib/TextAPI/Target.cpp')
-rw-r--r--llvm/lib/TextAPI/Target.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/TextAPI/Target.cpp b/llvm/lib/TextAPI/Target.cpp
index 35fe1bf..4c33a58 100644
--- a/llvm/lib/TextAPI/Target.cpp
+++ b/llvm/lib/TextAPI/Target.cpp
@@ -72,11 +72,5 @@ ArchitectureSet mapToArchitectureSet(ArrayRef<Target> Targets) {
return Result;
}
-std::string getTargetTripleName(const Target &Targ) {
- return (getArchitectureName(Targ.Arch) + "-apple-" +
- getOSAndEnvironmentName(Targ.Platform))
- .str();
-}
-
} // end namespace MachO.
} // end namespace llvm.