summaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/coverage-compilation-dir.c
AgeCommit message (Collapse)Author
2022-02-15Use functions with prototypes when appropriate; NFCAaron Ballman
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).
2021-02-25[Driver] Rename -fprofile-{prefix-map,compilation-dir} to ↵Petr Hosek
-fcoverage-{prefix-map,compilation-dir} These flags affect coverage mapping (-fcoverage-mapping), not -fprofile-[instr-]generate so it makes more sense to use the -fcoverage-* prefix. Differential Revision: https://reviews.llvm.org/D97434