aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/WebAssembly/wasm-main_argc_argv.c
blob: cd949acff40f617bdcb7b69452b17d356a77acdb (plain)
1
2
3
4
5
6
7
8
9
// 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 noundef %argc, ptr noundef %argv)