diff options
author | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-11-04 16:15:04 +0000 |
---|---|---|
committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-11-04 16:15:04 +0000 |
commit | 79ed5875918f9d8d2780f84b532f3b89ef2b4a6a (patch) | |
tree | 016039c25c32162e4a55beda22cdced04819ab2f /lib/Transforms/Utils/LowerSwitch.cpp | |
parent | 474ee02e13f56e77c0e311253752fac7c675552c (diff) | |
download | external_llvm-79ed5875918f9d8d2780f84b532f3b89ef2b4a6a.zip external_llvm-79ed5875918f9d8d2780f84b532f3b89ef2b4a6a.tar.gz external_llvm-79ed5875918f9d8d2780f84b532f3b89ef2b4a6a.tar.bz2 |
Finishing initial docs for all transformations in Passes.html.
Also cleaned up some comments in source files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43674 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/LowerSwitch.cpp')
-rw-r--r-- | lib/Transforms/Utils/LowerSwitch.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/Utils/LowerSwitch.cpp b/lib/Transforms/Utils/LowerSwitch.cpp index 3c08edf..dbf3f65 100644 --- a/lib/Transforms/Utils/LowerSwitch.cpp +++ b/lib/Transforms/Utils/LowerSwitch.cpp @@ -7,9 +7,9 @@ // //===----------------------------------------------------------------------===// // -// The LowerSwitch transformation rewrites switch statements with a sequence of -// branches, which allows targets to get away with not implementing the switch -// statement until it is convenient. +// The LowerSwitch transformation rewrites switch instructions with a sequence +// of branches, which allows targets to get away with not implementing the +// switch instruction until it is convenient. // //===----------------------------------------------------------------------===// |