Relocated comment in header.

llvm-svn: 45728
This commit is contained in:
Ted Kremenek 2008-01-08 00:07:06 +00:00
parent 7250120177
commit 551e4ce74e
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,5 @@
//===-- GRConstantPropagation.cpp --------------------------------*- C++ -*-==//
//
// [ Constant Propagation via Graph Reachability ]
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
@ -9,6 +7,8 @@
//
//===----------------------------------------------------------------------===//
//
// Constant Propagation via Graph Reachability
//
// This files defines a simple analysis that performs path-sensitive
// constant propagation within a function. An example use of this analysis
// is to perform simple checks for NULL dereferences.