[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2007-02-16 Thread Anton Korobeynikov


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.74 - 1.75
---
Log message:

Add possibility to set memory limit for binaries run via libSystem. This 
is especially needed for bugpoint. This partly implements PR688: 
http://llvm.org/PR688 


---
Diffs of the changes:  (+3 -0)

 config.h.in |3 +++
 1 files changed, 3 insertions(+)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.74 
llvm/include/llvm/Config/config.h.in:1.75
--- llvm/include/llvm/Config/config.h.in:1.74   Fri Jan 19 11:25:17 2007
+++ llvm/include/llvm/Config/config.h.inFri Feb 16 13:11:06 2007
@@ -124,6 +124,9 @@
 /* Define to 1 if you have the `getpagesize' function. */
 #undef HAVE_GETPAGESIZE
 
+/* Define to 1 if you have the `getrlimit' function. */
+#undef HAVE_GETRLIMIT
+
 /* Define to 1 if you have the `getrusage' function. */
 #undef HAVE_GETRUSAGE
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2007-01-19 Thread Anton Korobeynikov


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.73 - 1.74
---
Log message:

Adding disassembler interface and external hook to udis86 library.


---
Diffs of the changes:  (+6 -0)

 config.h.in |6 ++
 1 files changed, 6 insertions(+)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.73 
llvm/include/llvm/Config/config.h.in:1.74
--- llvm/include/llvm/Config/config.h.in:1.73   Sun Dec 17 22:11:16 2006
+++ llvm/include/llvm/Config/config.h.inFri Jan 19 11:25:17 2007
@@ -190,6 +190,9 @@
 /* Define to 1 if you have the `pthread' library (-lpthread). */
 #undef HAVE_LIBPTHREAD
 
+/* Define to 1 if you have the `udis86' library (-ludis86). */
+#undef HAVE_LIBUDIS86
+
 /* Define to 1 if you have the limits.h header file. */
 #undef HAVE_LIMITS_H
 
@@ -526,6 +529,9 @@
 /* Define to 1 if your sys/time.h declares `struct tm'. */
 #undef TM_IN_SYS_TIME
 
+/* Define if use udis86 library */
+#undef USE_UDIS86
+
 /* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
`char[]'. */
 #undef YYTEXT_POINTER



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2006-12-17 Thread Reid Spencer


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.72 - 1.73
---
Log message:

Determine if the -enable-pic option was given.


---
Diffs of the changes:  (+3 -0)

 config.h.in |3 +++
 1 files changed, 3 insertions(+)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.72 
llvm/include/llvm/Config/config.h.in:1.73
--- llvm/include/llvm/Config/config.h.in:1.72   Sun Dec 10 17:12:42 2006
+++ llvm/include/llvm/Config/config.h.inSun Dec 17 22:11:16 2006
@@ -14,6 +14,9 @@
 /* Define if CBE is enabled for printf %a output */
 #undef ENABLE_CBE_PRINTF_A
 
+/* Define if position independent code is enabled */
+#undef ENABLE_PIC
+
 /* Define if threads enabled */
 #undef ENABLE_THREADS
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2006-11-30 Thread Reid Spencer


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.70 - 1.71
---
Log message:

Define the HAVE_PTHREAD symbol.


---
Diffs of the changes:  (+0 -3)

 config.h.in |3 ---
 1 files changed, 3 deletions(-)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.70 
llvm/include/llvm/Config/config.h.in:1.71
--- llvm/include/llvm/Config/config.h.in:1.70   Sun Nov  5 11:08:18 2006
+++ llvm/include/llvm/Config/config.h.inThu Nov 30 21:46:01 2006
@@ -267,9 +267,6 @@
 /* Define to have the %a format string */
 #undef HAVE_PRINTF_A
 
-/* Define to 1 if you have the pthread.h header file. */
-#undef HAVE_PTHREAD_H
-
 /* Have pthread_mutex_lock */
 #undef HAVE_PTHREAD_MUTEX_LOCK
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2006-11-05 Thread Reid Spencer


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.69 - 1.70
---
Log message:

Add a -disable-cbe-printf-a option so that the output of the C Backend
stands a chance of being compiled with a non C99 C compiler. The default
is enabled so you must specifically disable this feature if you want the
CBE output compiled with an older C compiler.


---
Diffs of the changes:  (+3 -0)

 config.h.in |3 +++
 1 files changed, 3 insertions(+)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.69 
llvm/include/llvm/Config/config.h.in:1.70
--- llvm/include/llvm/Config/config.h.in:1.69   Thu Sep 14 01:17:20 2006
+++ llvm/include/llvm/Config/config.h.inSun Nov  5 11:08:18 2006
@@ -11,6 +11,9 @@
 /* Define to 1 if using `alloca.c'. */
 #undef C_ALLOCA
 
+/* Define if CBE is enabled for printf %a output */
+#undef ENABLE_CBE_PRINTF_A
+
 /* Define if threads enabled */
 #undef ENABLE_THREADS
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2006-09-14 Thread Reid Spencer


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.68 - 1.69
---
Log message:

Add a HAVE_MACH_MACH_H #define to detect the presence of the mach/mach.h
header file on Darwin. 


---
Diffs of the changes:  (+3 -0)

 config.h.in |3 +++
 1 files changed, 3 insertions(+)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.68 
llvm/include/llvm/Config/config.h.in:1.69
--- llvm/include/llvm/Config/config.h.in:1.68   Fri Aug  4 13:18:08 2006
+++ llvm/include/llvm/Config/config.h.inThu Sep 14 01:17:20 2006
@@ -200,6 +200,9 @@
 /* Define if lt_dlopen() is available on this platform */
 #undef HAVE_LT_DLOPEN
 
+/* Define to 1 if you have the mach/mach.h header file. */
+#undef HAVE_MACH_MACH_H
+
 /* Define to 1 if you have the mach-o/dyld.h header file. */
 #undef HAVE_MACH_O_DYLD_H
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2006-08-04 Thread Reid Spencer


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.67 - 1.68
---
Log message:

Update the auto* tools: autoconf 2.60, libtool 1.5.22, automake 1.9.6.
Update ltld.[ch] to version 1.5.22.
Correct the notes about updating these tools (autoconf/README.TXT)
Add configure options for getting the correct option for including a whole
archive when linking.


---
Diffs of the changes:  (+2 -2)

 config.h.in |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.67 
llvm/include/llvm/Config/config.h.in:1.68
--- llvm/include/llvm/Config/config.h.in:1.67   Mon Jun  5 11:11:07 2006
+++ llvm/include/llvm/Config/config.h.inFri Aug  4 13:18:08 2006
@@ -508,7 +508,7 @@
 
 /* If using the C implementation of alloca, define if you know the
direction of stack growth for your system; otherwise it will be
-   automatically deduced at run-time.
+   automatically deduced at runtime.
STACK_DIRECTION  0 = grows toward higher addresses
STACK_DIRECTION  0 = grows toward lower addresses
STACK_DIRECTION = 0 = direction of growth unknown */
@@ -539,5 +539,5 @@
 /* Define to `int' if sys/types.h does not define. */
 #undef pid_t
 
-/* Define to `unsigned' if sys/types.h does not define. */
+/* Define to `unsigned int' if sys/types.h does not define. */
 #undef size_t



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2006-06-05 Thread Reid Spencer


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.65 - 1.66
---
Log message:

Some enhancements for gv/graphviz/dot/dotty support and better handling of
paths under MingW.


---
Diffs of the changes:  (+6 -0)

 config.h.in |6 ++
 1 files changed, 6 insertions(+)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.65 
llvm/include/llvm/Config/config.h.in:1.66
--- llvm/include/llvm/Config/config.h.in:1.65   Fri Jun  2 18:13:18 2006
+++ llvm/include/llvm/Config/config.h.inMon Jun  5 10:54:38 2006
@@ -82,6 +82,9 @@
 /* Define to 1 if you have the dl.h header file. */
 #undef HAVE_DL_H
 
+/* Define if the dot program is available */
+#undef HAVE_DOT
+
 /* Define if the dotty program is available */
 #undef HAVE_DOTTY
 
@@ -425,6 +428,9 @@
 /* Define if this is Win32ish platform */
 #undef LLVM_ON_WIN32
 
+/* Define to path to dot program if found or 'echo dot' otherwise */
+#undef LLVM_PATH_DOT
+
 /* Define to path to dotty program if found or 'echo dotty' otherwise */
 #undef LLVM_PATH_DOTTY
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2006-06-05 Thread Reid Spencer


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.66 - 1.67
---
Log message:

For PR633: http://llvm.cs.uiuc.edu/PR633 :
Add configure checks for setjmp/longjmp for Chris. I can't believe this easy
PR has been outstanding for so long. If I don't get to something, please
remind me! :)


---
Diffs of the changes:  (+21 -0)

 config.h.in |   21 +
 1 files changed, 21 insertions(+)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.66 
llvm/include/llvm/Config/config.h.in:1.67
--- llvm/include/llvm/Config/config.h.in:1.66   Mon Jun  5 10:54:38 2006
+++ llvm/include/llvm/Config/config.h.inMon Jun  5 11:11:07 2006
@@ -194,6 +194,9 @@
the current directory to the dynamic linker search path. */
 #undef HAVE_LINK_R
 
+/* Define to 1 if you have the `longjmp' function. */
+#undef HAVE_LONGJMP
+
 /* Define if lt_dlopen() is available on this platform */
 #undef HAVE_LT_DLOPEN
 
@@ -285,15 +288,27 @@
 /* Define to 1 if you have the `sbrk' function. */
 #undef HAVE_SBRK
 
+/* Define to 1 if you have the `setjmp' function. */
+#undef HAVE_SETJMP
+
+/* Define to 1 if you have the setjmp.h header file. */
+#undef HAVE_SETJMP_H
+
 /* Define to 1 if you have the `setrlimit' function. */
 #undef HAVE_SETRLIMIT
 
 /* Define if you have the shl_load function. */
 #undef HAVE_SHL_LOAD
 
+/* Define to 1 if you have the `siglongjmp' function. */
+#undef HAVE_SIGLONGJMP
+
 /* Define to 1 if you have the signal.h header file. */
 #undef HAVE_SIGNAL_H
 
+/* Define to 1 if you have the `sigsetjmp' function. */
+#undef HAVE_SIGSETJMP
+
 /* Define to 1 if you have the stdint.h header file. */
 #undef HAVE_STDINT_H
 
@@ -398,6 +413,12 @@
 /* Define to 1 if you have the windows.h header file. */
 #undef HAVE_WINDOWS_H
 
+/* Define to 1 if you have the `_longjmp' function. */
+#undef HAVE__LONGJMP
+
+/* Define to 1 if you have the `_setjmp' function. */
+#undef HAVE__SETJMP
+
 /* Installation directory for binary executables */
 #undef LLVM_BINDIR
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2006-06-02 Thread Reid Spencer


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.64 - 1.65
---
Log message:

For PR798: http://llvm.cs.uiuc.edu/PR798 :
Have configure find the dotty program and adjust configuration.


---
Diffs of the changes:  (+6 -0)

 config.h.in |6 ++
 1 files changed, 6 insertions(+)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.64 
llvm/include/llvm/Config/config.h.in:1.65
--- llvm/include/llvm/Config/config.h.in:1.64   Thu Jun  1 19:40:35 2006
+++ llvm/include/llvm/Config/config.h.inFri Jun  2 18:13:18 2006
@@ -82,6 +82,9 @@
 /* Define to 1 if you have the dl.h header file. */
 #undef HAVE_DL_H
 
+/* Define if the dotty program is available */
+#undef HAVE_DOTTY
+
 /* Define if you have the _dyld_func_lookup function. */
 #undef HAVE_DYLD
 
@@ -422,6 +425,9 @@
 /* Define if this is Win32ish platform */
 #undef LLVM_ON_WIN32
 
+/* Define to path to dotty program if found or 'echo dotty' otherwise */
+#undef LLVM_PATH_DOTTY
+
 /* Define to path to Graphviz program if found or 'echo Graphviz' otherwise */
 #undef LLVM_PATH_GRAPHVIZ
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2006-06-01 Thread Reid Spencer


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.62 - 1.63
---
Log message:

Provide support for detecting if the Win32 imaghlp and psapi libraries
are available. These libraries are used in lib/System and should be 
included on the link line or if not available generate an error when
building lib/System.


---
Diffs of the changes:  (+12 -0)

 config.h.in |   12 
 1 files changed, 12 insertions(+)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.62 
llvm/include/llvm/Config/config.h.in:1.63
--- llvm/include/llvm/Config/config.h.in:1.62   Mon Jan 23 02:15:53 2006
+++ llvm/include/llvm/Config/config.h.inThu Jun  1 11:55:59 2006
@@ -136,6 +136,9 @@
 /* Define if the gv program is available */
 #undef HAVE_GV
 
+/* Define to 1 if you have the imagehlp.h header file. */
+#undef HAVE_IMAGEHLP_H
+
 /* Define to 1 if you have the `index' function. */
 #undef HAVE_INDEX
 
@@ -166,9 +169,15 @@
 /* Define to 1 if you have the `elf' library (-lelf). */
 #undef HAVE_LIBELF
 
+/* Define to 1 if you have the `imagehlp' library (-limagehlp). */
+#undef HAVE_LIBIMAGEHLP
+
 /* Define to 1 if you have the `m' library (-lm). */
 #undef HAVE_LIBM
 
+/* Define to 1 if you have the `psapi' library (-lpsapi). */
+#undef HAVE_LIBPSAPI
+
 /* Define to 1 if you have the `pthread' library (-lpthread). */
 #undef HAVE_LIBPTHREAD
 
@@ -246,6 +255,9 @@
 /* Define to have the %a format string */
 #undef HAVE_PRINTF_A
 
+/* Define to 1 if you have the psapi.h header file. */
+#undef HAVE_PSAPI_H
+
 /* Define to 1 if you have the pthread.h header file. */
 #undef HAVE_PTHREAD_H
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2006-06-01 Thread Reid Spencer


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.63 - 1.64
---
Log message:

Remove some flags backed out from earlier attempts at getting MING32W
configuration settled down.


---
Diffs of the changes:  (+0 -6)

 config.h.in |6 --
 1 files changed, 6 deletions(-)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.63 
llvm/include/llvm/Config/config.h.in:1.64
--- llvm/include/llvm/Config/config.h.in:1.63   Thu Jun  1 11:55:59 2006
+++ llvm/include/llvm/Config/config.h.inThu Jun  1 19:40:35 2006
@@ -136,9 +136,6 @@
 /* Define if the gv program is available */
 #undef HAVE_GV
 
-/* Define to 1 if you have the imagehlp.h header file. */
-#undef HAVE_IMAGEHLP_H
-
 /* Define to 1 if you have the `index' function. */
 #undef HAVE_INDEX
 
@@ -255,9 +252,6 @@
 /* Define to have the %a format string */
 #undef HAVE_PRINTF_A
 
-/* Define to 1 if you have the psapi.h header file. */
-#undef HAVE_PSAPI_H
-
 /* Define to 1 if you have the pthread.h header file. */
 #undef HAVE_PTHREAD_H
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2006-01-23 Thread Reid Spencer


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.61 - 1.62
---
Log message:

Update for including additional function tests.


---
Diffs of the changes:  (+7 -10)

 config.h.in |   17 +++--
 1 files changed, 7 insertions(+), 10 deletions(-)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.61 
llvm/include/llvm/Config/config.h.in:1.62
--- llvm/include/llvm/Config/config.h.in:1.61   Thu Jan 19 02:31:08 2006
+++ llvm/include/llvm/Config/config.h.inMon Jan 23 02:15:53 2006
@@ -51,9 +51,6 @@
 /* Does not have bi-directional iterator */
 #undef HAVE_BI_ITERATOR
 
-/* Define to 1 if you have the `ceil' function. */
-#undef HAVE_CEIL
-
 /* Define to 1 if you have the `ceilf' function. */
 #undef HAVE_CEILF
 
@@ -103,9 +100,6 @@
 /* Set to 1 if the finite function is found in ieeefp.h */
 #undef HAVE_FINITE_IN_IEEEFP_H
 
-/* Define to 1 if you have the `floor' function. */
-#undef HAVE_FLOOR
-
 /* Define to 1 if you have the `floorf' function. */
 #undef HAVE_FLOORF
 
@@ -240,6 +234,9 @@
 /* Define to 1 if you have the ndir.h header file, and it defines `DIR'. */
 #undef HAVE_NDIR_H
 
+/* Define to 1 if you have the `nearbyintf' function. */
+#undef HAVE_NEARBYINTF
+
 /* Define to 1 if you have the `opendir' function. */
 #undef HAVE_OPENDIR
 
@@ -267,11 +264,11 @@
 /* Define to 1 if you have the `rindex' function. */
 #undef HAVE_RINDEX
 
-/* Define to 1 if you have the rw/stdex/hash_map.h header file. */
-#undef HAVE_RW_STDEX_HASH_MAP_H
+/* Define to 1 if you have the `rintf' function. */
+#undef HAVE_RINTF
 
-/* Define to 1 if you have the rw/stdex/hash_set.h header file. */
-#undef HAVE_RW_STDEX_HASH_SET_H
+/* Define to 1 if you have the `roundf' function. */
+#undef HAVE_ROUNDF
 
 /* Define to 1 if you have the `sbrk' function. */
 #undef HAVE_SBRK



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2006-01-19 Thread Reid Spencer


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.60 - 1.61
---
Log message:

Make sure that libm is used during config tests so that ceil, floor, and
friends are actually detected.


---
Diffs of the changes:  (+3 -0)

 config.h.in |3 +++
 1 files changed, 3 insertions(+)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.60 
llvm/include/llvm/Config/config.h.in:1.61
--- llvm/include/llvm/Config/config.h.in:1.60   Thu Jan 19 02:22:40 2006
+++ llvm/include/llvm/Config/config.h.inThu Jan 19 02:31:08 2006
@@ -172,6 +172,9 @@
 /* Define to 1 if you have the `elf' library (-lelf). */
 #undef HAVE_LIBELF
 
+/* Define to 1 if you have the `m' library (-lm). */
+#undef HAVE_LIBM
+
 /* Define to 1 if you have the `pthread' library (-lpthread). */
 #undef HAVE_LIBPTHREAD
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2005-11-13 Thread Chris Lattner


Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.58 - 1.59
---
Log message:

add malloc_zone_statistics, remove mstats


---
Diffs of the changes:  (+3 -3)

 config.h.in |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.58 
llvm/include/llvm/Config/config.h.in:1.59
--- llvm/include/llvm/Config/config.h.in:1.58   Mon Nov 14 00:57:34 2005
+++ llvm/include/llvm/Config/config.h.inMon Nov 14 01:24:17 2005
@@ -188,6 +188,9 @@
 /* Define to 1 if you have the malloc/malloc.h header file. */
 #undef HAVE_MALLOC_MALLOC_H
 
+/* Define to 1 if you have the `malloc_zone_statistics' function. */
+#undef HAVE_MALLOC_ZONE_STATISTICS
+
 /* Define to 1 if you have the `memcpy' function. */
 #undef HAVE_MEMCPY
 
@@ -216,9 +219,6 @@
 /* Define if mmap() can map files into memory */
 #undef HAVE_MMAP_FILE
 
-/* Define to 1 if you have the `mstats' function. */
-#undef HAVE_MSTATS
-
 /* define if the compiler implements namespaces */
 #undef HAVE_NAMESPACES
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits