[compiler-rt] r204502 - InstrProf: __ => _ in header guards

Duncan P. N. Exon Smith dexonsmith at apple.com
Fri Mar 21 11:47:23 PDT 2014


Author: dexonsmith
Date: Fri Mar 21 13:47:23 2014
New Revision: 204502

URL: http://llvm.org/viewvc/llvm-project?rev=204502&view=rev
Log:
InstrProf: __ => _ in header guards

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

Modified: compiler-rt/trunk/lib/profile/InstrProfiling.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/profile/InstrProfiling.h?rev=204502&r1=204501&r2=204502&view=diff
==============================================================================
--- compiler-rt/trunk/lib/profile/InstrProfiling.h (original)
+++ compiler-rt/trunk/lib/profile/InstrProfiling.h Fri Mar 21 13:47:23 2014
@@ -7,8 +7,8 @@
 |*
 \*===----------------------------------------------------------------------===*/
 
-#ifndef PROFILE_INSTRPROFILING_H__
-#define PROFILE_INSTRPROFILING_H__
+#ifndef PROFILE_INSTRPROFILING_H_
+#define PROFILE_INSTRPROFILING_H_
 
 #define I386_FREEBSD (defined(__FreeBSD__) && defined(__i386__))
 
@@ -94,4 +94,4 @@ uint64_t __llvm_profile_get_magic(void);
 /*! \brief Get the version of the file format. */
 uint64_t __llvm_profile_get_version(void);
 
-#endif /* PROFILE_INSTRPROFILING_H__ */
+#endif /* PROFILE_INSTRPROFILING_H_ */





More information about the llvm-commits mailing list