llvm-project/clang/test/CodeGen/debug-info-extern-callback.c
Aaron Ballman ed509fe296 Use functions with prototypes when appropriate; NFC
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 tenth batch of tests being updated (there are a
significant number of other tests left to be updated).
2022-02-15 09:28:02 -05:00

23 lines
634 B
C

// RUN: %clang_cc1 -x c -debug-info-kind=limited -triple bpf-linux-gnu -emit-llvm %s -o - | FileCheck %s
extern int do_work1(int);
long bpf_helper1(void *callback_fn);
long prog1(void) {
return bpf_helper1(&do_work1);
}
extern int do_work2(void);
long prog2_1(void) {
return (long)&do_work2;
}
int do_work2(void) { return 0; }
long prog2_2(void) {
return (long)&do_work2;
}
// CHECK: declare !dbg ![[FUNC1:[0-9]+]] i32 @do_work1
// CHECK: define dso_local i32 @do_work2() #{{[0-9]+}} !dbg ![[FUNC2:[0-9]+]]
// CHECK: ![[FUNC1]] = !DISubprogram(name: "do_work1"
// CHECK: ![[FUNC2]] = distinct !DISubprogram(name: "do_work2"