
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 ninth batch of tests being updated (there are a significant number of other tests left to be updated).
24 lines
683 B
C
24 lines
683 B
C
// RUN: rm -fR %t
|
|
// RUN: mkdir %t
|
|
// RUN: %clang_analyze_cc1 -analyzer-checker=core \
|
|
// RUN: -analyzer-output=html -o %t -verify %s
|
|
// RUN: cat %t/report-*.html | FileCheck %s
|
|
|
|
void bar(int);
|
|
|
|
void foo2(void) {
|
|
int a;
|
|
int b = 1;
|
|
if (b)
|
|
bar(a); // expected-warning{{1st function call argument is an uninitialized value}}
|
|
}
|
|
|
|
// CHECK: <span class='variable'>b
|
|
// CHECK-SAME: <table class='variable_popup'><tbody><tr>
|
|
// CHECK-SAME: <td valign='top'>
|
|
// CHECK-SAME: <div class='PathIndex PathIndexPopUp'>1.1</div>
|
|
// CHECK-SAME: </td>
|
|
// CHECK-SAME: <td>'b' is 1</td>
|
|
// CHECK-SAME: </tr></tbody></table>
|
|
// CHECK-SAME: </span>
|