Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Analysis/inline4.c @ 222:81f6424ef0e3 llvm-original
LLVM original branch
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 18 Jul 2021 22:10:01 +0900 |
parents | 1d019706d866 |
children |
rev | line source |
---|---|
150 | 1 // RUN: %clang_analyze_cc1 -analyzer-checker=core -verify %s |
2 // expected-no-diagnostics | |
3 | |
4 int g(int a) { | |
5 return a; | |
6 } | |
7 | |
8 int f(int a) { | |
9 // Do not remove block-level expression bindings of caller when analyzing | |
10 // in the callee. | |
11 if (1 && g(a)) // The binding of '1 && g(a)' which is an UndefinedVal | |
12 // carries important information. | |
13 return 1; | |
14 return 0; | |
15 } |