diff options
Diffstat (limited to 'test/binaryen.js/inlining-options.js.txt')
-rw-r--r-- | test/binaryen.js/inlining-options.js.txt | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/test/binaryen.js/inlining-options.js.txt b/test/binaryen.js/inlining-options.js.txt index 91d360449..ab3821aeb 100644 --- a/test/binaryen.js/inlining-options.js.txt +++ b/test/binaryen.js/inlining-options.js.txt @@ -1,30 +1,3 @@ -// beginning a Binaryen API trace -#include <math.h> -#include <map> -#include "binaryen-c.h" -int main() { - std::map<size_t, BinaryenType> types; - std::map<size_t, BinaryenExpressionRef> expressions; - std::map<size_t, BinaryenFunctionRef> functions; - std::map<size_t, BinaryenGlobalRef> globals; - std::map<size_t, BinaryenEventRef> events; - std::map<size_t, BinaryenExportRef> exports; - std::map<size_t, RelooperBlockRef> relooperBlocks; - std::map<size_t, ExpressionRunnerRef> expressionRunners; - BinaryenModuleRef the_module = NULL; - RelooperRef the_relooper = NULL; - BinaryenGetAlwaysInlineMaxSize(); // alwaysInlineMaxSize=2 - BinaryenSetAlwaysInlineMaxSize(11); - BinaryenGetAlwaysInlineMaxSize(); - BinaryenGetFlexibleInlineMaxSize(); // flexibleInlineMaxSize=20 - BinaryenSetFlexibleInlineMaxSize(22); - BinaryenGetFlexibleInlineMaxSize(); - BinaryenGetOneCallerInlineMaxSize(); // oneCallerInlineMaxSize=15 - BinaryenSetOneCallerInlineMaxSize(33); - BinaryenGetOneCallerInlineMaxSize(); - return 0; -} -// ending a Binaryen API trace |