[llvm] r252985 - [WebAssembly] Remove unneeded TODO items. NFC.

Dan Gohman via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 12 16:41:25 PST 2015


Author: djg
Date: Thu Nov 12 18:41:25 2015
New Revision: 252985

URL: http://llvm.org/viewvc/llvm-project?rev=252985&view=rev
Log:
[WebAssembly] Remove unneeded TODO items. NFC.

Modified:
    llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrCall.td
    llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td

Modified: llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrCall.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrCall.td?rev=252985&r1=252984&r2=252985&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrCall.td (original)
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrCall.td Thu Nov 12 18:41:25 2015
@@ -42,9 +42,3 @@ let Uses = [SP32, SP64], isCall = 1 in {
                              [(WebAssemblycall0 I32:$callee)],
                              "call_indirect $callee">;
 } // Uses = [SP32,SP64], isCall = 1
-
-/*
- * TODO(jfb): Add the following.
- *
- * addressof: obtain a function pointer value for a given function
- */

Modified: llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td?rev=252985&r1=252984&r2=252985&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td (original)
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td Thu Nov 12 18:41:25 2015
@@ -12,19 +12,6 @@
 ///
 //===----------------------------------------------------------------------===//
 
-/*
- * TODO(jfb): Add the following.
- *
- * block: a fixed-length sequence of statements
- * if: if statement
- * do_while: do while statement, basically a loop with a conditional branch
- * forever: infinite loop statement (like while (1)), basically an unconditional
- *          branch (back to the top of the loop)
- * continue: continue to start of nested loop
- * break: break to end from nested loop or block
- * switch: switch statement with fallthrough
- */
-
 let isBranch = 1, isTerminator = 1, hasCtrlDep = 1 in {
 def BR_IF_ : I<(outs), (ins bb_op:$dst, I32:$a),
                [(brcond I32:$a, bb:$dst)],




More information about the llvm-commits mailing list