Diff Detail
- Repository
- rG LLVM Github Monorepo
Unit Tests
| Time | Test | |
|---|---|---|
| 140 ms | lldb-unit.Host/_/HostTests::Unknown Unit Message ("") |
Event Timeline
| clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp | ||
|---|---|---|
| 67 | This may be misleading: It is every call event that is encountered, even if not handled specially (because no summary). (I would not call a function "handled" if we do nothing with it beneath a check if it needs to be handled really.) Probably "found" is better. | |
| 68 | The # of calls with summary or The # of handled calls with associated summary ? | |
| 72 | Change "argumentum" to "argument"? | |
Besides @balazske's comments, looks good to me.
| clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp | ||
|---|---|---|
| 504–505 | At first, it was strange to check NewState != State since the addTransition will do this check regardless. | |
This may be misleading: It is every call event that is encountered, even if not handled specially (because no summary). (I would not call a function "handled" if we do nothing with it beneath a check if it needs to be handled really.) Probably "found" is better.