diff options
author | Dan Gohman <gohman@apple.com> | 2007-05-11 21:10:54 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-05-11 21:10:54 +0000 |
commit | 23d9d27c265753da55a8ee7879820acb4d1e3a6d (patch) | |
tree | 48a40db04c9bd4e33bce8bb0d42a6615017ecf00 /lib/Transforms/Utils/LCSSA.cpp | |
parent | 667976e35fe922e425a13848ef97d95dd07ab5f4 (diff) |
Fix typos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36994 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/LCSSA.cpp')
-rw-r--r-- | lib/Transforms/Utils/LCSSA.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/LCSSA.cpp b/lib/Transforms/Utils/LCSSA.cpp index 4cdafe7968..b51d7b51d3 100644 --- a/lib/Transforms/Utils/LCSSA.cpp +++ b/lib/Transforms/Utils/LCSSA.cpp @@ -12,7 +12,7 @@ // the left into the right code: // // for (...) for (...) -// if (c) if(c) +// if (c) if (c) // X1 = ... X1 = ... // else else // X2 = ... X2 = ... |