diff options
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/TargetOptionsImpl.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/TargetOptionsImpl.cpp b/llvm/lib/CodeGen/TargetOptionsImpl.cpp index 618d903a090..d2dd59b0236 100644 --- a/llvm/lib/CodeGen/TargetOptionsImpl.cpp +++ b/llvm/lib/CodeGen/TargetOptionsImpl.cpp @@ -58,3 +58,10 @@ 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; +} |