Relocated comment in header.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45728 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Analysis/GRConstantPropagation.cpp b/Analysis/GRConstantPropagation.cpp
index 322f45b..8bc0b3b 100644
--- a/Analysis/GRConstantPropagation.cpp
+++ b/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.