Ted Kremenek | ac9bea8 | 2009-11-12 06:17:47 +0000 | [diff] [blame] | 1 | //=-- GRExprEngineExperimentalChecks.h ------------------------------*- C++ -*-= |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines functions to instantiate and register experimental |
| 11 | // checks in GRExprEngine. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef LLVM_CLANG_GREXPRENGINE_EXPERIMENTAL_CHECKS |
| 16 | #define LLVM_CLANG_GREXPRENGINE_EXPERIMENTAL_CHECKS |
| 17 | |
| 18 | namespace clang { |
| 19 | |
| 20 | class GRExprEngine; |
| 21 | |
| 22 | void RegisterPthreadLockChecker(GRExprEngine &Eng); |
Zhongxing Xu | 7b76096 | 2009-11-13 07:25:27 +0000 | [diff] [blame] | 23 | void RegisterMallocChecker(GRExprEngine &Eng); |
Ted Kremenek | ac9bea8 | 2009-11-12 06:17:47 +0000 | [diff] [blame] | 24 | |
| 25 | } // end clang namespace |
| 26 | #endif |