From 551e4ce74eea11cd06dcdd22cb67d11a40995c5b Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Tue, 8 Jan 2008 00:07:06 +0000 Subject: [PATCH] Relocated comment in header. llvm-svn: 45728 --- clang/Analysis/GRConstantPropagation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/Analysis/GRConstantPropagation.cpp b/clang/Analysis/GRConstantPropagation.cpp index 322f45bd1e70..8bc0b3b89ef6 100644 --- a/clang/Analysis/GRConstantPropagation.cpp +++ b/clang/Analysis/GRConstantPropagation.cpp @@ -1,6 +1,4 @@ //===-- GRConstantPropagation.cpp --------------------------------*- C++ -*-==// -// -// [ Constant Propagation via Graph Reachability ] // // The LLVM Compiler Infrastructure // @@ -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.