mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-13 17:37:00 +00:00

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 fifth batch of tests being updated (there are a significant number of other tests left to be updated). Note, the behavior of -ast-print is broken. It prints functions with a prototype (void) as if they have no prototype () in C. Some tests need to disable strict prototype checking when recompiling the results of an -ast-print invocation.
18 lines
743 B
C
18 lines
743 B
C
// RUN: %clang_cc1 -mllvm -emptyline-comment-coverage=false -fprofile-instrument=clang -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only %s | FileCheck %s
|
|
|
|
#define WHILE while (0) {}
|
|
|
|
// CHECK: counters_in_macro_following_unreachable
|
|
void counters_in_macro_following_unreachable(void) {
|
|
// CHECK-NEXT: File 0, [[@LINE-1]]:52 -> {{[0-9]+}}:2 = #0
|
|
return;
|
|
// CHECK-NEXT: Gap,File 0, [[@LINE-1]]:10 -> [[@LINE+3]]:3 = 0
|
|
// CHECK-NEXT: Expansion,File 0, [[@LINE+2]]:3 -> [[@LINE+2]]:8 = 0
|
|
// CHECK-NEXT: File 0, [[@LINE+1]]:8 -> [[@LINE+2]]:2 = 0
|
|
WHILE
|
|
}
|
|
// CHECK-NEXT: File 1, 3:15 -> 3:27 = 0
|
|
// CHECK-NEXT: File 1, 3:22 -> 3:23 = #1
|
|
// CHECK-NEXT: Branch,File 1, 3:22 -> 3:23 = 0, 0
|
|
// CHECK-NEXT: File 1, 3:25 -> 3:27 = #1
|