diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2012-10-31 18:52:25 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2012-10-31 18:52:25 +0000 |
commit | 6d42bbfe5e18f7256049435f2e23d11aeee670f1 (patch) | |
tree | daef482bcf1bdfc97d2bd6651dcb58b079045f5c /include/llvm | |
parent | 497204a94b6ebe94b0cc9b9ef11eee7baf1df53b (diff) | |
download | external_llvm-6d42bbfe5e18f7256049435f2e23d11aeee670f1.zip external_llvm-6d42bbfe5e18f7256049435f2e23d11aeee670f1.tar.gz external_llvm-6d42bbfe5e18f7256049435f2e23d11aeee670f1.tar.bz2 |
Remove Triple::getArchTypeForDarwinArchName. I lives on the clang driver now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167157 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/ADT/Triple.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/ADT/Triple.h b/include/llvm/ADT/Triple.h index 15fe55f..2ace829 100644 --- a/include/llvm/ADT/Triple.h +++ b/include/llvm/ADT/Triple.h @@ -426,11 +426,6 @@ public: /// architecture name (e.g., "x86"). static ArchType getArchTypeForLLVMName(StringRef Str); - /// getArchTypeForDarwinArchName - Get the architecture type for a "Darwin" - /// architecture name, for example as accepted by "gcc -arch" (see also - /// arch(3)). - static ArchType getArchTypeForDarwinArchName(StringRef Str); - /// @} }; |