This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
bbf8f23ed9
llvm-project
/
clang
/
test
/
Analysis
/
PR12905.c
9 lines
104 B
C
Raw
Normal View
History
Unescape
Escape
Reland 4: [analyzer] NFC: Update test infrastructure to support multiple constraint managers Summary: Replace calls to %clang/%clang_cc1 with %clang_analyze_cc1 when invoking static analyzer, and perform runtime substitution to select the appropriate constraint manager, per D28952. Reviewers: xazax.hun, NoQ, zaks.anna, dcoughlin Subscribers: mgorny, rgov, mikhail.ramalho, a.sidorin, cfe-commits Differential Revision: https://reviews.llvm.org/D30373 llvm-svn: 296895
2017-03-04 02:02:02 +08:00
// RUN: %clang_analyze_cc1 -analyzer-checker=core %s
Analyzer: Fix PR12905, a crash when encountering a call to a function named "C". While there clean up indentation. llvm-svn: 157204
2012-05-22 03:40:38 +08:00
// PR12905
void
C
(
void
)
;
void
t
(
void
)
{
C
(
)
;
}