Add wasm-c-api nested function calls sample (#652)
And enable to copy back the return value of wasm main function when calling wasm_application_execute_main, add license headers in wasm-c-api samples, fix several issues reported by klocwork.
This commit is contained in:
@ -1,3 +1,6 @@
|
||||
;; Copyright (C) 2019 Intel Corporation. All rights reserved.
|
||||
;; SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||
|
||||
(module
|
||||
(global $mut_f32_export (export "var f32") (mut f32) (f32.const 7))
|
||||
(func (export "get var f32 export") (result f32) (global.get $mut_f32_export))
|
||||
|
||||
Reference in New Issue
Block a user