diff options
author | Daniel Jasper <djasper@google.com> | 2017-08-03 05:15:53 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2017-08-03 05:15:53 +0000 |
commit | 314ed201f3942a52b8b45a6f146e9b44c407d606 (patch) | |
tree | e450bd32abce1191e64213c3f919a01e7799552e /llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h | |
parent | 2783469566632aec8204a7380d937f1149ba9f7a (diff) | |
download | bcm5719-llvm-314ed201f3942a52b8b45a6f146e9b44c407d606.tar.gz bcm5719-llvm-314ed201f3942a52b8b45a6f146e9b44c407d606.zip |
Fix WebAssembly target after r309911.
llvm-svn: 309922
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h b/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h index 52a2ef78736..22484952651 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h +++ b/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 * |