diff options
author | Eric Christopher <echristo@gmail.com> | 2015-01-14 00:50:31 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-01-14 00:50:31 +0000 |
commit | 6e30cd95cbde1f8c78a581da36d6fe318112200b (patch) | |
tree | af19578f2b86cc370f07f5bd2bbace5508f84be0 /llvm/lib/CodeGen/TargetOptionsImpl.cpp | |
parent | bc301a8ed4ce5ef4e69590c595bfc777cfbdafdf (diff) | |
download | llvm-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.cpp | 7 |
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; -} |