aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/TargetOptionsImpl.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2015-01-14 00:50:31 +0000
committerEric Christopher <echristo@gmail.com>2015-01-14 00:50:31 +0000
commit6e30cd95cbde1f8c78a581da36d6fe318112200b (patch)
treeaf19578f2b86cc370f07f5bd2bbace5508f84be0 /llvm/lib/CodeGen/TargetOptionsImpl.cpp
parentbc301a8ed4ce5ef4e69590c595bfc777cfbdafdf (diff)
downloadllvm-6e30cd95cbde1f8c78a581da36d6fe318112200b.zip
llvm-6e30cd95cbde1f8c78a581da36d6fe318112200b.tar.gz
llvm-6e30cd95cbde1f8c78a581da36d6fe318112200b.tar.bz2
Migrate ABIName to MCTargetOptions so that it can be shared between
the TargetMachine level and the MC level. llvm-svn: 225891
Diffstat (limited to 'llvm/lib/CodeGen/TargetOptionsImpl.cpp')
-rw-r--r--llvm/lib/CodeGen/TargetOptionsImpl.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/CodeGen/TargetOptionsImpl.cpp b/llvm/lib/CodeGen/TargetOptionsImpl.cpp
index d2dd59b..618d903 100644
--- a/llvm/lib/CodeGen/TargetOptionsImpl.cpp
+++ b/llvm/lib/CodeGen/TargetOptionsImpl.cpp
@@ -58,10 +58,3 @@ StringRef TargetOptions::getTrapFunctionName() const {
StringRef TargetOptions::getCFIFuncName() const {
return CFIFuncName;
}
-
-/// getABIName - If this returns a non-empty string this represents the
-/// textual name of the ABI that we want the backend to use, e.g. o32, or
-/// aapcs-linux.
-StringRef TargetOptions::getABIName() const {
- return ABIName;
-}