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 | d568767ecb39489b91b4160ba881fb3991677a31 (patch) | |
tree | dc4b2e13880470f6d15263211cb97ecd95d0882a /llvm/lib/Transforms/Utils/LowerSwitch.cpp | |
parent | d210e9d8809d5eb1693aa20bdc0d4b64f08768e2 (diff) | |
download | bcm5719-llvm-d568767ecb39489b91b4160ba881fb3991677a31.tar.gz bcm5719-llvm-d568767ecb39489b91b4160ba881fb3991677a31.zip |
Finishing initial docs for all transformations in Passes.html.
Also cleaned up some comments in source files.
llvm-svn: 43674
Diffstat (limited to 'llvm/lib/Transforms/Utils/LowerSwitch.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/LowerSwitch.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Utils/LowerSwitch.cpp b/llvm/lib/Transforms/Utils/LowerSwitch.cpp index 3c08edf0c6a..dbf3f65d929 100644 --- a/llvm/lib/Transforms/Utils/LowerSwitch.cpp +++ b/llvm/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. // //===----------------------------------------------------------------------===// |