summaryrefslogtreecommitdiffstats
path: root/clang/test/utils/update_cc_test_checks/Inputs/on_the_fly_arg_change.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/utils/update_cc_test_checks/Inputs/on_the_fly_arg_change.c')
-rw-r--r--clang/test/utils/update_cc_test_checks/Inputs/on_the_fly_arg_change.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/utils/update_cc_test_checks/Inputs/on_the_fly_arg_change.c b/clang/test/utils/update_cc_test_checks/Inputs/on_the_fly_arg_change.c
index 8956e6b52a21..f05ba41dec1f 100644
--- a/clang/test/utils/update_cc_test_checks/Inputs/on_the_fly_arg_change.c
+++ b/clang/test/utils/update_cc_test_checks/Inputs/on_the_fly_arg_change.c
@@ -1,12 +1,12 @@
// RUN: %clang_cc1 -triple=x86_64-unknown-linux-gnu -emit-llvm -o - %s | FileCheck %s
-int checks_please() {
+int checks_please(void) {
return 1;
}
// UTC_ARGS: --disable
-int no_checks_please() {
+int no_checks_please(void) {
// Manual CHECK line should be retained:
// CHECK: manual check line
return -1;
@@ -15,6 +15,6 @@ int no_checks_please() {
// UTC_ARGS: --enable
-int checks_again() {
+int checks_again(void) {
return 2;
}