llvm-for-llvmta/tools/clang/test/CodeGen/WebAssembly/wasm-main_argc_argv.c

10 lines
225 B
C
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 -triple wasm32 -o - -emit-llvm %s | FileCheck %s
// Mangle the argc/argv form of main.
int main(int argc, char **argv) {
return 0;
}
// CHECK-LABEL: define i32 @__main_argc_argv(i32 %argc, i8** %argv)