[llvm-commits] [llvm] r135973 - /llvm/trunk/lib/Transforms/Scalar/SCCP.cpp
Nick Lewycky
nicholas at mxc.ca
Mon Jul 25 14:16:04 PDT 2011
Author: nicholas
Date: Mon Jul 25 16:16:04 2011
New Revision: 135973
URL: http://llvm.org/viewvc/llvm-project?rev=135973&view=rev
Log:
Add missing space (this line is no longer pushing the 80-column limit).
Modified:
llvm/trunk/lib/Transforms/Scalar/SCCP.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/SCCP.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/SCCP.cpp?rev=135973&r1=135972&r2=135973&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/SCCP.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/SCCP.cpp Mon Jul 25 16:16:04 2011
@@ -156,7 +156,7 @@
///
class SCCPSolver : public InstVisitor<SCCPSolver> {
const TargetData *TD;
- SmallPtrSet<BasicBlock*, 8> BBExecutable;// The BBs that are executable.
+ SmallPtrSet<BasicBlock*, 8> BBExecutable; // The BBs that are executable.
DenseMap<Value*, LatticeVal> ValueState; // The state each value is in.
/// StructValueState - This maintains ValueState for values that have
More information about the llvm-commits
mailing list