
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 ninth batch of tests being updated (there are a significant number of other tests left to be updated).
11 lines
230 B
C
11 lines
230 B
C
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
|
|
|
|
/* GCC wasn't handling 64 bit constants right fixed */
|
|
|
|
int printf(const char * restrict format, ...);
|
|
|
|
int main(void) {
|
|
long long Var = 123455678902ll;
|
|
printf("%lld\n", Var);
|
|
}
|