mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-14 01:46:41 +00:00
10 lines
178 B
C
10 lines
178 B
C
// RUN: %clang_cc1 -triple wasm32 -o - -emit-llvm %s | FileCheck %s
|
|
|
|
// Don't mangle the no-arg form of main.
|
|
|
|
int main(void) {
|
|
return 0;
|
|
}
|
|
|
|
// CHECK-LABEL: define i32 @main()
|