[PATCH] D46602: [clang-tidy] Store checks profiling info as YAML files
    Roman Lebedev via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Wed May  9 06:57:01 PDT 2018
    
    
  
lebedev.ri added inline comments.
================
Comment at: docs/clang-tidy/index.rst:783
+  {
+    "time.clang-tidy.readability-function-size.wall": 1.0421266555786133e+00,
+    "time.clang-tidy.readability-function-size.user": 9.2088400000005421e-01,
----------------
Hmm, thinking about it a bit more, i think it should also contain the `"file"`,
```
{
  "file": "/source/example.cpp",
  "profile": {
    "time.clang-tidy.readability-function-size.wall": 9.5367431640625000e-05,
    "time.clang-tidy.readability-function-size.user": 7.2000000000002617e-05,
    "time.clang-tidy.readability-function-size.sys": 1.8999999999999920e-05
  }
}
```
Repository:
  rL LLVM
https://reviews.llvm.org/D46602
    
    
More information about the llvm-commits
mailing list