diff options
author | Dan Gohman <dan433584@gmail.com> | 2015-11-13 00:41:25 +0000 |
---|---|---|
committer | Dan Gohman <dan433584@gmail.com> | 2015-11-13 00:41:25 +0000 |
commit | c9dd057e3ccdbe44dd2aa2fd0303ff9a26c45f15 (patch) | |
tree | 4d9a5c4651d92d2a4bc40f6c5c99e1de42ce54e5 /llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td | |
parent | b1daa3aec7e2f9265133d34ad7242c553fa888f6 (diff) | |
download | bcm5719-llvm-c9dd057e3ccdbe44dd2aa2fd0303ff9a26c45f15.tar.gz bcm5719-llvm-c9dd057e3ccdbe44dd2aa2fd0303ff9a26c45f15.zip |
[WebAssembly] Remove unneeded TODO items. NFC.
llvm-svn: 252985
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td b/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td index acfd738a8fa..b5140324d4f 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td +++ b/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td @@ -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)], |