diff options
author | Shih-wei Liao <sliao@google.com> | 2010-09-11 01:42:09 -0700 |
---|---|---|
committer | Shih-wei Liao <sliao@google.com> | 2010-09-11 12:12:38 -0700 |
commit | a95f589c757c8c857096a07e0d376ca9aaec6c2c (patch) | |
tree | 056a01e997faab445c6a627ddea28633e3da253c /device | |
parent | da61c1662bd86ea1f7fad601e9966f1b700636c1 (diff) | |
download | external_llvm-a95f589c757c8c857096a07e0d376ca9aaec6c2c.zip external_llvm-a95f589c757c8c857096a07e0d376ca9aaec6c2c.tar.gz external_llvm-a95f589c757c8c857096a07e0d376ca9aaec6c2c.tar.bz2 |
Apply changes on LLVM r112364 after merge.
Change-Id: I9688675d46dca0d564206616c40b005669269010
Diffstat (limited to 'device')
-rw-r--r-- | device/include/llvm/Config/config.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/device/include/llvm/Config/config.h b/device/include/llvm/Config/config.h index 6a5d0ea..d5cdab5 100644 --- a/device/include/llvm/Config/config.h +++ b/device/include/llvm/Config/config.h @@ -1,6 +1,9 @@ /* include/llvm/Config/config.h. Generated from config.h.in by configure. */ /* include/llvm/Config/config.h.in. Generated from autoconf/configure.ac by autoheader. */ +#ifndef CONFIG_H +#define CONFIG_H + /* 32 bit multilib directory. */ #define CXX_INCLUDE_32BIT_DIR "" @@ -25,6 +28,9 @@ /* Define if threads enabled */ #define ENABLE_THREADS 0 +/* Define if timestamp information (e.g., __DATE___) is allowed */ +#define ENABLE_TIMESTAMPS 1 + /* Define to 1 if you have the `argz_append' function. */ #define HAVE_ARGZ_APPEND 1 @@ -61,6 +67,9 @@ /* Define to 1 if you have the `closedir' function. */ #define HAVE_CLOSEDIR 1 +/* Define to 1 if you have the <CrashReporterClient.h> header file. */ +/* #undef HAVE_CRASHREPORTERCLIENT_H */ + /* Define to 1 if you have the <ctype.h> header file. */ #define HAVE_CTYPE_H 1 @@ -450,6 +459,9 @@ /* Define to 1 if you have the `__dso_handle' function. */ #define HAVE___DSO_HANDLE 1 +/* Linker version detected at compile time. */ +/* #undef HOST_LINK_VERSION */ + /* Installation directory for binary executables */ #define LLVM_BINDIR "/usr/local/google/llvm/bin" @@ -486,6 +498,9 @@ /* LLVM architecture name for the native architecture, if available */ #define LLVM_NATIVE_ARCH ARMTarget +/* Short LLVM architecture name for the native architecture, if available */ +#define LLVM_NATIVE_ARCHNAME ARM + /* Define if this is Unixish platform */ #define LLVM_ON_UNIX 1 @@ -590,3 +605,5 @@ /* Define to `unsigned int' if <sys/types.h> does not define. */ /* #undef size_t */ + +#endif |