[AMDGPU][AsmParser][NFC] Get rid of custom default operand handlers.
[llvm-project.git] / clang / test / Analysis / diagnostics / undef-value-caller.c
blobaded5d37019b833cbedb5f33a3903f4ddd1344f3
1 // RUN: %clang_analyze_cc1 -analyzer-checker=core -analyzer-output=plist -o %t %s
2 // RUN: %normalize_plist <%t | diff -ub %S/Inputs/expected-plists/undef-value-caller.c.plist -
4 #include "undef-value-callee.h"
6 // This code used to cause a crash since we were not adding fileID of the header to the plist diagnostic.
8 int test_calling_unimportant_callee(int argc, char *argv[]) {
9 int x;
10 callee();
11 return x; // expected-warning {{Undefined or garbage value returned to caller}}