10 lines · c
1// RUN: %clang_cc1 -triple wasm32 -o - -emit-llvm %s | FileCheck %s2 3// Mangle the argc/argv form of main.4 5int main(int argc, char **argv) {6 return 0;7}8 9// CHECK-LABEL: define i32 @__main_argc_argv(i32 noundef %argc, ptr noundef %argv)10