diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2013-10-15 16:19:54 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2013-10-15 16:19:54 +0000 |
commit | c97850be7647f2209823b5841a323684edb15dbe (patch) | |
tree | 8bbce75dcb8212b79fdcc2e028610a8d9efe79c5 /llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | |
parent | 27ef175ef0a581832fc1325fcf8793d37e115e59 (diff) | |
download | bcm5719-llvm-c97850be7647f2209823b5841a323684edb15dbe.tar.gz bcm5719-llvm-c97850be7647f2209823b5841a323684edb15dbe.zip |
LoopVectorize: Properly reflect PODness in comments.
llvm-svn: 192717
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/LoopVectorize.cpp')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index e85d4fc9229..11fd45e9c36 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -445,7 +445,7 @@ public: MRK_FloatMax }; - /// This POD struct holds information about reduction variables. + /// This struct holds information about reduction variables. struct ReductionDescriptor { ReductionDescriptor() : StartValue(0), LoopExitInstr(0), Kind(RK_NoReduction), MinMaxKind(MRK_Invalid) {} @@ -482,8 +482,8 @@ public: MinMaxReductionKind MinMaxKind; }; - // This POD struct holds information about the memory runtime legality - // check that a group of pointers do not overlap. + /// This struct holds information about the memory runtime legality + /// check that a group of pointers do not overlap. struct RuntimePointerCheck { RuntimePointerCheck() : Need(false) {} @@ -514,7 +514,7 @@ public: SmallVector<unsigned, 2> DependencySetId; }; - /// A POD for saving information about induction variables. + /// A struct for saving information about induction variables. struct InductionInfo { InductionInfo(Value *Start, InductionKind K) : StartValue(Start), IK(K) {} InductionInfo() : StartValue(0), IK(IK_NoInduction) {} |