You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
330 B
10 lines
330 B
// RUN: %clang_cc1 -triple i686-pc-openbsd -fsyntax-only -verify -ffreestanding %s
|
|
|
|
// Tests that -ffreestanding disables all special treatment of main().
|
|
|
|
void* allocate(long size);
|
|
|
|
void* main(void* context, long size) {
|
|
if (context) return allocate(size);
|
|
} // expected-warning {{control may reach end of non-void function}}
|