aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/GCSE.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-22 21:25:54 +0000
committerChris Lattner <sabre@nondot.org>2002-08-22 21:25:54 +0000
commit0712d55512c986c752b79fc97a360f783c55dedb (patch)
treefcd5f0b1d417baf39e09772829b0d6a2bc00c257 /lib/Transforms/Scalar/GCSE.cpp
parentf12c2c28bd72091f2d7fff5718265c5ad52e7af8 (diff)
Remove long obsolete comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3476 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/GCSE.cpp')
-rw-r--r--lib/Transforms/Scalar/GCSE.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/Transforms/Scalar/GCSE.cpp b/lib/Transforms/Scalar/GCSE.cpp
index a26e023d27..dc6a345316 100644
--- a/lib/Transforms/Scalar/GCSE.cpp
+++ b/lib/Transforms/Scalar/GCSE.cpp
@@ -5,13 +5,6 @@
// examining the SSA value graph of the function, instead of doing slow, dense,
// bit-vector computations.
//
-// This pass works best if it is proceeded with a simple constant propogation
-// pass and an instruction combination pass because this pass does not do any
-// value numbering (in order to be speedy).
-//
-// This pass does not attempt to CSE load instructions, because it does not use
-// pointer analysis to determine when it is safe.
-//
//===----------------------------------------------------------------------===//
#include "llvm/Transforms/Scalar.h"