Ted Kremenek | 1053d24 | 2009-11-06 02:24:13 +0000 | [diff] [blame^] | 1 | //=-- GRExprEngineInternalChecks.h- Builtin GRExprEngine Checks -----*- 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 the "built-in" |
| 11 | // checks in GRExprEngine. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef LLVM_CLANG_GREXPRENGINE_INTERNAL_CHECKS |
| 16 | #define LLVM_CLANG_GREXPRENGINE_INTERNAL_CHECKS |
| 17 | |
| 18 | namespace clang { |
| 19 | |
| 20 | class GRExprEngine; |
| 21 | |
| 22 | void RegisterReturnStackAddressChecker(GRExprEngine &Eng); |
| 23 | void RegisterReturnUndefChecker(GRExprEngine &Eng); |
| 24 | |
| 25 | } // end clang namespace |
| 26 | #endif |