diff options
author | Anna Zaks <ganna@apple.com> | 2012-08-24 21:07:45 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2012-08-24 21:07:45 +0000 |
commit | 6c67d98374067e77bc56e22d659aa2f4d076fb25 (patch) | |
tree | 25f778c4685b62e43f4ae67883ed9b706a78c815 | |
parent | e6afde59dbf423b337e12472083cd05e425b18f8 (diff) | |
download | bcm5719-llvm-6c67d98374067e77bc56e22d659aa2f4d076fb25.tar.gz bcm5719-llvm-6c67d98374067e77bc56e22d659aa2f4d076fb25.zip |
[analyzer] More fixups/rewording based on Jordan's feedback.
llvm-svn: 162597
-rw-r--r-- | clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h | 4 | ||||
-rw-r--r-- | clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h index 9755c123a25..5ac97dbc314 100644 --- a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h +++ b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h @@ -33,8 +33,8 @@ public: /// \brief Returns the currently inferred upper bound on the runtime type. QualType getType() const { return T; } - /// \brief Returns false if the type T is the only type in the lattice - /// (the type information is precise), true otherwise. + /// \brief Returns false if the type information is precise (the type T is + /// the only type in the lattice), true otherwise. bool canBeASubClass() const { return CanBeASubClass; } void Profile(llvm::FoldingSetNodeID &ID) const { diff --git a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h index 2263eca328b..264c6106db5 100644 --- a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h +++ b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// // -// This file defines the state of the program along the analyzes path. +// This file defines the state of the program along the analysisa path. // //===----------------------------------------------------------------------===// |