mdbx: fix typo for clang.

Change-Id: I6973be51cbe04dba0dd993eec9dcfd641919eb83
This commit is contained in:
Leo Yuriev 2016-04-28 08:20:04 +03:00
parent 535dd9eb8c
commit 3294da86d7

View File

@ -72,7 +72,7 @@
# define __hot __attribute__((hot, optimize("O3"))) # define __hot __attribute__((hot, optimize("O3")))
# elif defined(__GNUC__) # elif defined(__GNUC__)
/* cland case, just put frequently used functions in separate section */ /* cland case, just put frequently used functions in separate section */
# define __cold __attribute__((section("text.hot"))) # define __hot __attribute__((section("text.hot")))
# else # else
# define __hot # define __hot
# endif # endif