
A significant number of our tests in C accidentally use functions without prototypes. This patch converts the function signatures to have a prototype for the situations where the test is not specific to K&R C declarations. e.g., void func(); becomes void func(void); This is the fourth batch of tests being updated (there are a significant number of other tests left to be updated).
20 lines
699 B
C
20 lines
699 B
C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
int main(void) {
|
|
int line = __builtin_LINE();
|
|
__builtin_LINE(42); // expected-error {{expected ')'}}
|
|
__builtin_LINE(double); // expected-error {{expected ')'}}
|
|
|
|
int column = __builtin_COLUMN();
|
|
__builtin_COLUMN(42); // expected-error {{expected ')'}}
|
|
__builtin_COLUMN(double); // expected-error {{expected ')'}}
|
|
|
|
const char *func = __builtin_FUNCTION();
|
|
__builtin_FUNCTION(42); // expected-error {{expected ')'}}
|
|
__builtin_FUNCTION(double); // expected-error {{expected ')'}}
|
|
|
|
const char *file = __builtin_FILE();
|
|
__builtin_FILE(42); // expected-error {{expected ')'}}
|
|
__builtin_FILE(double); // expected-error {{expected ')'}}
|
|
}
|