1 // RUN: %clang_analyze_cc1 %s \
2 // RUN:   -analyzer-checker=core \
3 // RUN:   -analyzer-checker=apiModeling.StdCLibraryFunctions \
4 // RUN:   -analyzer-config apiModeling.StdCLibraryFunctions:DisplayLoadedSummaries=true \
5 // RUN:   -analyzer-checker=debug.ExprInspection \
6 // RUN:   -analyzer-config eagerly-assume=false \
7 // RUN:   -triple i686-unknown-linux 2>&1 | FileCheck %s
8 
9 // CHECK: Loaded summary for: unsigned int fread(void *restrict, size_t, size_t, FILE *restrict)
10 
11 typedef typeof(sizeof(int)) size_t;
12 typedef struct FILE FILE;
13 size_t fread(void *restrict, size_t, size_t, FILE *restrict);
14 
15 // Must have at least one call expression to initialize the summary map.
16 int bar(void);
foo()17 void foo() {
18   bar();
19 }
20