diff options
author | Eric Christopher <echristo@gmail.com> | 2015-04-19 03:21:04 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-04-19 03:21:04 +0000 |
commit | d2e3ddad1442a0c69e917d45ad821e98338d4bf1 (patch) | |
tree | d755f1c5cdcd4edf6a142caedf1642899659651a /llvm/lib/CodeGen | |
parent | 78804ab2df11e3aed890ab83ac4d2bcee9decb88 (diff) | |
download | bcm5719-llvm-d2e3ddad1442a0c69e917d45ad821e98338d4bf1.tar.gz bcm5719-llvm-d2e3ddad1442a0c69e917d45ad821e98338d4bf1.zip |
Remove CFIFuncName from TargetOptions as it is currently unused.
llvm-svn: 235268
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/TargetOptionsImpl.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/TargetOptionsImpl.cpp b/llvm/lib/CodeGen/TargetOptionsImpl.cpp index 41c66bb8dc2..3ca2017550c 100644 --- a/llvm/lib/CodeGen/TargetOptionsImpl.cpp +++ b/llvm/lib/CodeGen/TargetOptionsImpl.cpp @@ -51,9 +51,3 @@ bool TargetOptions::HonorSignDependentRoundingFPMath() const { StringRef TargetOptions::getTrapFunctionName() const { return TrapFuncName; } - -/// getCFIFuncName - If this returns a non-empty string, then it is the name of -/// the function that gets called on CFI violations in CFI non-enforcing mode. -StringRef TargetOptions::getCFIFuncName() const { - return CFIFuncName; -} |