diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-07-13 11:54:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-13 11:54:16 -0700 |
commit | bb8a2aa3e5b02e297a2ef79131a511efe21d78d8 (patch) | |
tree | 08e5e1fed51e6e76ae665488b5c66e8fca2e2e18 /src/binaryen-c.h | |
parent | 1a07fc4cc4f729b116d41e6ea4a6a22207af53b8 (diff) | |
download | binaryen-bb8a2aa3e5b02e297a2ef79131a511efe21d78d8.tar.gz binaryen-bb8a2aa3e5b02e297a2ef79131a511efe21d78d8.tar.bz2 binaryen-bb8a2aa3e5b02e297a2ef79131a511efe21d78d8.zip |
Don't emit empty array literals in trace output (#631)
* don't emit empty array literals in trace output
Diffstat (limited to 'src/binaryen-c.h')
-rw-r--r-- | src/binaryen-c.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/binaryen-c.h b/src/binaryen-c.h index 3ed5f167f..b32fa566a 100644 --- a/src/binaryen-c.h +++ b/src/binaryen-c.h @@ -423,7 +423,7 @@ BinaryenExpressionRef RelooperRenderAndDispose(RelooperRef relooper, RelooperBlo // When calling this to turn on tracing, the prelude of the full program is printed, // and when calling it to turn it off, the ending of the program is printed, giving // you the full compilable testcase. -// TODO: compile-time option to enable/disable this feature entirely at build time. +// TODO: compile-time option to enable/disable this feature entirely at build time? void BinaryenSetAPITracing(int on); #ifdef __cplusplus |