diff options
author | Akira Hatanaka <ahatanaka@apple.com> | 2015-05-15 00:20:44 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@apple.com> | 2015-05-15 00:20:44 +0000 |
commit | ff86773f51f214d990540e9542fc706f140e7bc7 (patch) | |
tree | 5064b503aeae9d9262149d5d2d9321ead49e5a97 /llvm/lib/Target/TargetMachine.cpp | |
parent | 0453be9bd900fcc35ac393fde2a87e206d0d9741 (diff) | |
download | bcm5719-llvm-ff86773f51f214d990540e9542fc706f140e7bc7.tar.gz bcm5719-llvm-ff86773f51f214d990540e9542fc706f140e7bc7.zip |
Stop resetting SanitizeAddress in TargetMachine::resetTargetOptions. NFC.
Instead of doing that, create a temporary copy of MCTargetOptions and reset its
SanitizeAddress field based on the function's attribute every time an InlineAsm
instruction is emitted in AsmPrinter::EmitInlineAsm.
This is part of the work to remove TargetMachine::resetTargetOptions (the FIXME
added to TargetMachine.cpp in r236009 explains why this function has to be
removed).
Differential Revision: http://reviews.llvm.org/D9570
llvm-svn: 237412
Diffstat (limited to 'llvm/lib/Target/TargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/TargetMachine.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp index 2a1beda49fd..50396729e0e 100644 --- a/llvm/lib/Target/TargetMachine.cpp +++ b/llvm/lib/Target/TargetMachine.cpp @@ -72,8 +72,6 @@ void TargetMachine::resetTargetOptions(const Function &F) const { RESET_OPTION(NoInfsFPMath, "no-infs-fp-math"); RESET_OPTION(NoNaNsFPMath, "no-nans-fp-math"); RESET_OPTION(DisableTailCalls, "disable-tail-calls"); - - Options.MCOptions.SanitizeAddress = F.hasFnAttribute(Attribute::SanitizeAddress); } /// getRelocationModel - Returns the code generation relocation model. The |