diff options
author | Alon Zakai <alonzakai@gmail.com> | 2018-07-10 11:05:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-10 11:05:44 -0700 |
commit | 6285642d3c2e267c40eab1c46dff887fca1bd3d7 (patch) | |
tree | 8c0611384e098d59e39b5670b8c867b2b296f7d8 /src/binaryen-c.h | |
parent | 5ccfbacb8914bd220d67c95f9e9310c872eb987f (diff) | |
download | binaryen-6285642d3c2e267c40eab1c46dff887fca1bd3d7.tar.gz binaryen-6285642d3c2e267c40eab1c46dff887fca1bd3d7.tar.bz2 binaryen-6285642d3c2e267c40eab1c46dff887fca1bd3d7.zip |
Minor code cleanups (#1617)
* code cleanups in wasm-binary: remove an & param, and standardize whitespace
* add some docs for how the relooper handles blocks with no outgoing branches [ci skip]
Diffstat (limited to 'src/binaryen-c.h')
-rw-r--r-- | src/binaryen-c.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/binaryen-c.h b/src/binaryen-c.h index 1047dca73..c61668c6d 100644 --- a/src/binaryen-c.h +++ b/src/binaryen-c.h @@ -822,7 +822,8 @@ const char* BinaryenExportGetValue(BinaryenExportRef export_); // General usage is (1) create a relooper, (2) create blocks, (3) add // branches between them, (4) render the output. // -// See Relooper.h for more details +// For more details, see src/cfg/Relooper.h and +// https://github.com/WebAssembly/binaryen/wiki/Compiling-to-WebAssembly-with-Binaryen#cfg-api typedef void* RelooperRef; typedef void* RelooperBlockRef; |