summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h')
-rw-r--r--gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h b/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h
index 52a2ef78736..dd826befd11 100644
--- a/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h
+++ b/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h
@@ -28,8 +28,9 @@ class WebAssemblyTargetMachine final : public LLVMTargetMachine {
public:
WebAssemblyTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
StringRef FS, const TargetOptions &Options,
- Optional<Reloc::Model> RM, CodeModel::Model CM,
- CodeGenOpt::Level OL);
+ Optional<Reloc::Model> RM,
+ Optional<CodeModel::Model> CM, CodeGenOpt::Level OL,
+ bool JIT);
~WebAssemblyTargetMachine() override;
const WebAssemblySubtarget *
@@ -42,8 +43,7 @@ public:
return TLOF.get();
}
- /// \brief Get the TargetIRAnalysis for this target.
- TargetIRAnalysis getTargetIRAnalysis() override;
+ TargetTransformInfo getTargetTransformInfo(const Function &F) override;
bool usesPhysRegsForPEI() const override { return false; }
};