[compiler-rt] r255068 - Fix typo

Xinliang David Li via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 8 14:51:40 PST 2015


Author: davidxl
Date: Tue Dec  8 16:51:40 2015
New Revision: 255068

URL: http://llvm.org/viewvc/llvm-project?rev=255068&view=rev
Log:
Fix typo

Modified:
    compiler-rt/trunk/lib/profile/InstrProfiling.c

Modified: compiler-rt/trunk/lib/profile/InstrProfiling.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/profile/InstrProfiling.c?rev=255068&r1=255067&r2=255068&view=diff
==============================================================================
--- compiler-rt/trunk/lib/profile/InstrProfiling.c (original)
+++ compiler-rt/trunk/lib/profile/InstrProfiling.c Tue Dec  8 16:51:40 2015
@@ -203,7 +203,7 @@ __llvm_profile_instrument_target(uint64_
    threads may still be updating the value profile data and creating new
    value entries. To accommadate this, we need to add extra bytes to the
    data buffer. The size of the extra space is controlled by an environment
-   varaible. */
+   variable. */
 static unsigned getVprofExtraBytes() {
   const char *ExtraStr =
       GetEnvHook ? GetEnvHook("LLVM_VALUE_PROF_BUFFER_EXTRA") : 0;




More information about the llvm-commits mailing list