diff options
author | JF Bastien <jfb@google.com> | 2015-08-24 22:16:48 +0000 |
---|---|---|
committer | JF Bastien <jfb@google.com> | 2015-08-24 22:16:48 +0000 |
commit | af111db8af5e2ec7bfc9afa6b6e0f285129f0624 (patch) | |
tree | 482845bc029a40c8284c9f78981f67889cbbc24d /llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td | |
parent | 19c2e6634de882c2f146d278b49adb2952d7d104 (diff) | |
download | bcm5719-llvm-af111db8af5e2ec7bfc9afa6b6e0f285129f0624.tar.gz bcm5719-llvm-af111db8af5e2ec7bfc9afa6b6e0f285129f0624.zip |
WebAssembly: Implement call
Summary: Support function calls.
Reviewers: sunfish, sunfishcode
Subscribers: sunfishcode, jfb, llvm-commits
Differential revision: http://reviews.llvm.org/D12219
llvm-svn: 245887
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td b/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td index f4d16d39e64..61de5ddd716 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td +++ b/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td @@ -12,7 +12,7 @@ /// //===----------------------------------------------------------------------===// -// WebAssembly Instruction Format +// WebAssembly Instruction Format. class WebAssemblyInst<string cstr> : Instruction { field bits<0> Inst; // Instruction encoding. let Namespace = "WebAssembly"; @@ -20,7 +20,7 @@ class WebAssemblyInst<string cstr> : Instruction { let Constraints = cstr; } -// Normal instructions +// Normal instructions. class I<dag oops, dag iops, list<dag> pattern, string cstr = ""> : WebAssemblyInst<cstr> { dag OutOperandList = oops; |