diff options
author | Stephen Hines <srhines@google.com> | 2014-12-01 14:51:49 -0800 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2014-12-02 16:08:10 -0800 |
commit | 37ed9c199ca639565f6ce88105f9e39e898d82d0 (patch) | |
tree | 8fb36d3910e3ee4c4e1b7422f4f017108efc52f5 /host | |
parent | d2327b22152ced7bc46dc629fc908959e8a52d03 (diff) | |
download | external_llvm-37ed9c199ca639565f6ce88105f9e39e898d82d0.zip external_llvm-37ed9c199ca639565f6ce88105f9e39e898d82d0.tar.gz external_llvm-37ed9c199ca639565f6ce88105f9e39e898d82d0.tar.bz2 |
Update aosp/master LLVM for rebase to r222494.
Change-Id: Ic787f5e0124df789bd26f3f24680f45e678eef2d
Diffstat (limited to 'host')
-rw-r--r-- | host/include/llvm/Config/config.h | 10 | ||||
-rw-r--r-- | host/include/llvm/Config/llvm-config.h | 2 |
2 files changed, 8 insertions, 4 deletions
diff --git a/host/include/llvm/Config/config.h b/host/include/llvm/Config/config.h index d686e16..cb3d4a3 100644 --- a/host/include/llvm/Config/config.h +++ b/host/include/llvm/Config/config.h @@ -225,7 +225,11 @@ #define HAVE_LINK_EXPORT_DYNAMIC 1 /* Define to 1 if you have the <link.h> header file. */ +#if defined(__APPLE__) +/* #undef HAVE_LINK_H */ +#else #define HAVE_LINK_H 1 +#endif /* Define if you can use -Wl,-R. to pass -R. to the linker, in order to add the current directory to the dynamic linker search path. */ @@ -652,7 +656,7 @@ #define LLVM_VERSION_MAJOR 3 /* Minor version of the LLVM API */ -#define LLVM_VERSION_MINOR 5 +#define LLVM_VERSION_MINOR 6 /* Define if the OS needs help to load dependent libraries for dlopen(). */ /* #undef LTDL_DLOPEN_DEPLIBS */ @@ -685,13 +689,13 @@ #define PACKAGE_NAME "LLVM" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "LLVM 3.5.svn" +#define PACKAGE_STRING "LLVM 3.6.svn" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "llvm" /* Define to the version of this package. */ -#define PACKAGE_VERSION "3.5" +#define PACKAGE_VERSION "3.6" /* Define as the return type of signal handlers (`int' or `void'). */ #define RETSIGTYPE void diff --git a/host/include/llvm/Config/llvm-config.h b/host/include/llvm/Config/llvm-config.h index 95f85fe..6cb218e 100644 --- a/host/include/llvm/Config/llvm-config.h +++ b/host/include/llvm/Config/llvm-config.h @@ -95,7 +95,7 @@ #define LLVM_VERSION_MAJOR 3 /* Minor version of the LLVM API */ -#define LLVM_VERSION_MINOR 5 +#define LLVM_VERSION_MINOR 6 #include "llvm/Config/llvm-platform-config.h" |