aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/Store.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-07-06 22:59:23 +0000
committerTed Kremenek <kremenek@apple.com>2009-07-06 22:59:23 +0000
commitdb5f266be075aba0f4ca1690e358245a726c9c61 (patch)
tree7d1cc8bb2d729b0ebe73fd417be299facfda06ed /lib/Analysis/Store.cpp
parentfc8f57c31d8336db0ccb2ce8eb9ebf52228a47c1 (diff)
Fix 80 col violation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@74877 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/Store.cpp')
-rw-r--r--lib/Analysis/Store.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Analysis/Store.cpp b/lib/Analysis/Store.cpp
index b161d5310e..4ca0208522 100644
--- a/lib/Analysis/Store.cpp
+++ b/lib/Analysis/Store.cpp
@@ -91,10 +91,10 @@ StoreManager::NewCastRegion(const GRState *state, const MemRegion* R,
case MemRegion::FieldRegionKind:
case MemRegion::ObjCIvarRegionKind:
case MemRegion::VarRegionKind: {
- // VarRegion, ElementRegion, and FieldRegion has an inherent type. Normally
- // they should not be cast. We only layer an ElementRegion when the cast-to
- // pointee type is of smaller size. In other cases, we return the original
- // VarRegion.
+ // VarRegion, ElementRegion, and FieldRegion has an inherent type.
+ // Normally they should not be cast. We only layer an ElementRegion when
+ // the cast-to pointee type is of smaller size. In other cases, we return
+ // the original VarRegion.
// If the pointee type is incomplete, do not compute its size, and return
// the original region.