diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2015-06-21 13:59:01 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2015-06-21 13:59:01 +0000 | 
| commit | 3a0822f094b578157263e04114075ad7df81db41 (patch) | |
| tree | bc48361fe2cd1ca5f93ac01b38b183774468fc79 /lib/Target/TargetMachine.cpp | |
| parent | 85d8b2bbe386bcfe669575d05b61482d7be07e5d (diff) | |
Notes
Diffstat (limited to 'lib/Target/TargetMachine.cpp')
| -rw-r--r-- | lib/Target/TargetMachine.cpp | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/lib/Target/TargetMachine.cpp b/lib/Target/TargetMachine.cpp index 28242502ec852..0b05303f71bfd 100644 --- a/lib/Target/TargetMachine.cpp +++ b/lib/Target/TargetMachine.cpp @@ -38,7 +38,7 @@ using namespace llvm;  //  TargetMachine::TargetMachine(const Target &T, StringRef DataLayoutString, -                             StringRef TT, StringRef CPU, StringRef FS, +                             const Triple &TT, StringRef CPU, StringRef FS,                               const TargetOptions &Options)      : TheTarget(T), DL(DataLayoutString), TargetTriple(TT), TargetCPU(CPU),        TargetFS(FS), CodeGenInfo(nullptr), AsmInfo(nullptr), MRI(nullptr), @@ -70,7 +70,6 @@ void TargetMachine::resetTargetOptions(const Function &F) const {    RESET_OPTION(UnsafeFPMath, "unsafe-fp-math");    RESET_OPTION(NoInfsFPMath, "no-infs-fp-math");    RESET_OPTION(NoNaNsFPMath, "no-nans-fp-math"); -  RESET_OPTION(DisableTailCalls, "disable-tail-calls");  }  /// getRelocationModel - Returns the code generation relocation model. The | 
