diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-04-08 08:46:25 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-04-08 08:46:25 +0000 |
commit | e20c780aafc1a9717b40c9a9fd2e5879543277cd (patch) | |
tree | 1db51d8abd0f510bafe5a7c6b0454945f7d9154a /compiler-rt/lib/tsan | |
parent | e6459977b8f396caefc3ac0995d7e1f95adabdee (diff) | |
download | bcm5719-llvm-e20c780aafc1a9717b40c9a9fd2e5879543277cd.tar.gz bcm5719-llvm-e20c780aafc1a9717b40c9a9fd2e5879543277cd.zip |
[tsan] Fix build.
llvm-svn: 179008
Diffstat (limited to 'compiler-rt/lib/tsan')
-rw-r--r-- | compiler-rt/lib/tsan/rtl/tsan_stat.cc | 1 | ||||
-rw-r--r-- | compiler-rt/lib/tsan/rtl/tsan_stat.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/compiler-rt/lib/tsan/rtl/tsan_stat.cc b/compiler-rt/lib/tsan/rtl/tsan_stat.cc index fa21cea6fd2..72e7ee4c3d9 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_stat.cc +++ b/compiler-rt/lib/tsan/rtl/tsan_stat.cc @@ -296,6 +296,7 @@ void StatOutput(u64 *stat) { name[StatInt_clock_settime] = " clock_settime "; name[StatInt_getitimer] = " getitimer "; name[StatInt_setitimer] = " setitimer "; + name[StatInt_time] = " time "; name[StatAnnotation] = "Dynamic annotations "; name[StatAnnotateHappensBefore] = " HappensBefore "; diff --git a/compiler-rt/lib/tsan/rtl/tsan_stat.h b/compiler-rt/lib/tsan/rtl/tsan_stat.h index 37d6ef26764..aea27843629 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_stat.h +++ b/compiler-rt/lib/tsan/rtl/tsan_stat.h @@ -291,6 +291,7 @@ enum StatType { StatInt_clock_settime, StatInt_getitimer, StatInt_setitimer, + StatInt_time, // Dynamic annotations. StatAnnotation, |