diff options
author | Stephen Hines <srhines@google.com> | 2013-08-07 19:25:16 -0700 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2013-08-09 17:11:14 -0700 |
commit | ead8d02a509cd69a74e01e4af90d8b237f30ed1c (patch) | |
tree | 654c9742f1bd3cda576befe15f7600a9a62f3495 /host | |
parent | fab2daa4a1127ecb217abe2b07c1769122b6fee1 (diff) | |
download | external_llvm-ead8d02a509cd69a74e01e4af90d8b237f30ed1c.zip external_llvm-ead8d02a509cd69a74e01e4af90d8b237f30ed1c.tar.gz external_llvm-ead8d02a509cd69a74e01e4af90d8b237f30ed1c.tar.bz2 |
Update LLVM for merge to r187913.
Add HAVE_FUTIMENS to */include/llvm/Config/config.h
Update version number to 3.3 (even though this is tracking 3.4)
Removed lib/Archive
Added lib/Option
Android.mk changes:
- PathV2.cpp
- SimplifyLibCalls.cpp
- BlackList.cpp
- VecUtils.cpp
+ MD5.cpp
+ CFG.cpp
+ SpecialCaseList.cpp
+ MachOUniversal.cpp
+ StructurizeCFG.cpp
Change-Id: I8ee072cd0d4210a6a5492c0e6663f8464ff21386
Diffstat (limited to 'host')
-rw-r--r-- | host/include/llvm/Config/config.h | 3 | ||||
-rw-r--r-- | host/include/llvm/Config/llvm-config.h | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/host/include/llvm/Config/config.h b/host/include/llvm/Config/config.h index e6c59c6..17577c6 100644 --- a/host/include/llvm/Config/config.h +++ b/host/include/llvm/Config/config.h @@ -144,6 +144,9 @@ /* Define to 1 if you have the `fmodf' function. */ #define HAVE_FMODF 1 +/* Define to 1 if you have the `futimens' function. */ +#define HAVE_FUTIMENS 1 + /* Define to 1 if you have the `getcwd' function. */ #define HAVE_GETCWD 1 diff --git a/host/include/llvm/Config/llvm-config.h b/host/include/llvm/Config/llvm-config.h index 964a00a..8637f41 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 1 +#define LLVM_VERSION_MINOR 3 #include "llvm/Config/llvm-platform-config.h" |