mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 12:46:09 +00:00

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).
8 lines
222 B
C
8 lines
222 B
C
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
|
|
|
|
// CHECK: @a = external {{(dso_local )?}}constan
|
|
extern const int a[]; // 'a' should be marked constant even though it's external!
|
|
int foo (void) {
|
|
return a[0];
|
|
}
|