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.
19 lines
792 B
C
19 lines
792 B
C
// RUN: %clang_cc1 -mllvm -emptyline-comment-coverage=false -fprofile-instrument=clang -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name include-macros.c %s | FileCheck %s
|
|
|
|
#include "Inputs/macros.h"
|
|
|
|
void f1(void) {
|
|
M2("a", "b");
|
|
}
|
|
|
|
// CHECK-LABEL: f1:
|
|
// CHECK-NEXT: File 0, 5:15 -> 7:2 = #0
|
|
// CHECK-NEXT: Expansion,File 0, 6:3 -> 6:5 = #0 (Expanded file = 1)
|
|
// CHECK-NEXT: File 1, 13:20 -> 13:50 = #0
|
|
// CHECK-NEXT: Expansion,File 1, 13:20 -> 13:22 = #0 (Expanded file = 2)
|
|
// CHECK-NEXT: File 2, 7:20 -> 7:46 = #0
|
|
// CHECK-NEXT: Expansion,File 2, 7:33 -> 7:44 = #0 (Expanded file = 3)
|
|
// CHECK-NEXT: File 3, 13:26 -> 13:34 = #0
|
|
// CHECK-NEXT: Expansion,File 3, 13:26 -> 13:33 = #0 (Expanded file = 4)
|
|
// CHECK-NEXT: File 4, 3:17 -> 3:18 = #0
|