llvm-project/clang/test/Driver/cc-log-diagnostics.c
Aaron Ballman 7de7161304 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 sixth batch of tests being updated (there are a significant
number of other tests left to be updated).
2022-02-09 17:16:10 -05:00

36 lines
1.3 KiB
C

// RUN: rm -f %t.log
// RUN: env RC_DEBUG_OPTIONS=1 \
// RUN: CC_LOG_DIAGNOSTICS=1 CC_LOG_DIAGNOSTICS_FILE=%t.log \
// RUN: %clang -Wfoobar -no-canonical-prefixes -target x86_64-apple-darwin10 -fsyntax-only %s
// RUN: FileCheck %s < %t.log
int f0(void) {}
// CHECK: <dict>
// CHECK: <key>main-file</key>
// CHECK: <string>{{.*}}cc-log-diagnostics.c</string>
// CHECK: <key>dwarf-debug-flags</key>
// CHECK: <string>{{.*}}clang{{.*}}-fsyntax-only{{.*}}</string>
// CHECK: <key>diagnostics</key>
// CHECK: <array>
// CHECK: <dict>
// CHECK: <key>level</key>
// CHECK: <string>warning</string>
// CHECK: <key>message</key>
// CHECK: <string>unknown warning option &apos;-Wfoobar&apos;; did you mean &apos;-W{{.*}}&apos;?</string>
// CHECK: </dict>
// CHECK: <dict>
// CHECK: <key>level</key>
// CHECK: <string>warning</string>
// CHECK: <key>filename</key>
// CHECK: <string>{{.*}}cc-log-diagnostics.c</string>
// CHECK: <key>line</key>
// CHECK: <integer>7</integer>
// CHECK: <key>column</key>
// CHECK: <integer>15</integer>
// CHECK: <key>message</key>
// CHECK: <string>non-void function does not return a value</string>
// CHECK: </dict>
// CHECK: </array>
// CHECK: </dict>