diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-02-12 12:02:49 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-02-12 12:02:49 +0000 |
commit | d8cfb99a7193bf9132d56efe6a730c8a592571c3 (patch) | |
tree | 768dd30ce0fa7e93d16900a9f1ef60ccf06a1391 /compiler-rt | |
parent | ba3e901e1452682a9df73e1c87cf6fc847a370ae (diff) | |
download | bcm5719-llvm-d8cfb99a7193bf9132d56efe6a730c8a592571c3.tar.gz bcm5719-llvm-d8cfb99a7193bf9132d56efe6a730c8a592571c3.zip |
[sanitizer] Missing changes from r174960.
llvm-svn: 174962
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/lib/tsan/rtl/tsan_stat.cc | 6 | ||||
-rw-r--r-- | compiler-rt/lib/tsan/rtl/tsan_stat.h | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/compiler-rt/lib/tsan/rtl/tsan_stat.cc b/compiler-rt/lib/tsan/rtl/tsan_stat.cc index 7de1fec7b20..053cf6e729b 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_stat.cc +++ b/compiler-rt/lib/tsan/rtl/tsan_stat.cc @@ -257,6 +257,12 @@ void StatOutput(u64 *stat) { name[StatInt_scanf] = " scanf "; name[StatInt_sscanf] = " sscanf "; name[StatInt_fscanf] = " fscanf "; + name[StatInt___isoc99_vscanf] = " vscanf "; + name[StatInt___isoc99_vsscanf] = " vsscanf "; + name[StatInt___isoc99_vfscanf] = " vfscanf "; + name[StatInt___isoc99_scanf] = " scanf "; + name[StatInt___isoc99_sscanf] = " sscanf "; + name[StatInt___isoc99_fscanf] = " fscanf "; name[StatInt_on_exit] = " on_exit "; name[StatInt___cxa_atexit] = " __cxa_atexit "; diff --git a/compiler-rt/lib/tsan/rtl/tsan_stat.h b/compiler-rt/lib/tsan/rtl/tsan_stat.h index 9ef557abbd2..0cd55ceaf25 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_stat.h +++ b/compiler-rt/lib/tsan/rtl/tsan_stat.h @@ -256,6 +256,12 @@ enum StatType { StatInt_scanf, StatInt_sscanf, StatInt_fscanf, + StatInt___isoc99_vscanf, + StatInt___isoc99_vsscanf, + StatInt___isoc99_vfscanf, + StatInt___isoc99_scanf, + StatInt___isoc99_sscanf, + StatInt___isoc99_fscanf, StatInt_on_exit, StatInt___cxa_atexit, |