summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2003-06-25 19:06:40 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2003-06-25 19:06:40 +0000
commit0ab6a0c78789fec967e02534b471ea3eb79aedf8 (patch)
treed167749b8b5ac22d853ad41f4270fa914a361914 /lib/libc
parent76a1e6ad1d1aa50235bc5a6a2e03d98dc066981d (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/i386/gen/alloca.S6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libc/i386/gen/alloca.S b/lib/libc/i386/gen/alloca.S
index 4f44db7267f8..657c11424bd9 100644
--- a/lib/libc/i386/gen/alloca.S
+++ b/lib/libc/i386/gen/alloca.S
@@ -34,7 +34,9 @@
* SUCH DAMAGE.
*/
-#ifndef __GNUC__
+#if !defined(__GNUC__) && !defined(__INTEL_COMPILER)
+#error Please add alloca support for this compiler on FreeBSD.
+
#if defined(LIBC_SCCS) && !defined(lint)
.asciz "@(#)alloca.s 5.2 (Berkeley) 5/14/90"
#endif /* LIBC_SCCS and not lint */
@@ -57,4 +59,4 @@ ENTRY(alloca)
pushl 0(%ecx)
pushl %eax /* dummy to pop at callsite */
jmp *%edx /* "return" */
-#endif /*__GNUC__*/
+#endif /*!__GNUC__*/