]> granicus.if.org Git - clang/commitdiff
Added LLVM comment header.
authorZhongxing Xu <xuzhongxing@gmail.com>
Fri, 29 Aug 2008 15:09:12 +0000 (15:09 +0000)
committerZhongxing Xu <xuzhongxing@gmail.com>
Fri, 29 Aug 2008 15:09:12 +0000 (15:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55537 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/PathSensitive/ConstraintManager.h
lib/Analysis/BasicConstraintManager.cpp

index 6014e66015fa9fbe3a69b73847aa5a1553b57284..25c9260a72c38ec7a37b887b28c17225dd630501 100644 (file)
@@ -1,3 +1,16 @@
+//== ConstraintManager.h - Constraints on symbolic values.-------*- C++ -*--==//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+//  This file defined the interface to manage constraints on symbolic values.
+//
+//===----------------------------------------------------------------------===//
+
 #ifndef LLVM_CLANG_ANALYSIS_CONSTRAINT_MANAGER_H
 #define LLVM_CLANG_ANALYSIS_CONSTRAINT_MANAGER_H
 
index 7298d355c4b17f8e153110eda7f079a6af4c8b05..a42fbeef52ee4bd1630aeca48e33f3efa71ceff3 100644 (file)
@@ -1,3 +1,17 @@
+//== BasicConstraintManager.cpp - Manage basic constraints.------*- C++ -*--==//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+//  This file defines BasicConstraintManager, a class that tracks simple 
+//  equality and inequality constraints on symbolic values of GRState.
+//
+//===----------------------------------------------------------------------===//
+
 #include "clang/Analysis/PathSensitive/ConstraintManager.h"
 #include "clang/Analysis/PathSensitive/GRState.h"
 #include "clang/Analysis/PathSensitive/GRStateTrait.h"