[PATCH] D62877: [WebAssembly] Implement tail calls and unify tablegen call classes

Derek Schuff via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 4 22:48:39 PDT 2019


dschuff added inline comments.


================
Comment at: llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp:651
+        (CLI.CS && CLI.CS.isMustTailCall()))
+      fail(DL, DAG, "WebAssembly doesn't support tail call yet");
+    CLI.IsTailCall = false;
----------------
Probably should update this error message (e.g. "tail calls aren't enabled")


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D62877/new/

https://reviews.llvm.org/D62877





More information about the llvm-commits mailing list