aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>2015-04-16 15:38:24 +0000
committerhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>2015-04-16 15:38:24 +0000
commit1461b7caea40982520aab56fa5b204ec2ca22825 (patch)
tree1c20ccdb2e70d101958d1a5f327b2f96241d46b9 /gcc
parent6d917984cc9d72bed9c7fabb8c39bbfbe3145898 (diff)
Replace __buitlin_alloca with __builtin_alloca
* gcc.target/i386/mpx/alloca-1-lbv.c (mpx_test): Replace __buitlin_alloca with __builtin_alloca. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-5-branch@222152 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.target/i386/mpx/alloca-1-lbv.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 92d28697a2e..0ba617bbe29 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2015-04-16 H.J. Lu <hongjiu.lu@intel.com>
+
+ * gcc.target/i386/mpx/alloca-1-lbv.c (mpx_test): Replace
+ __buitlin_alloca with __builtin_alloca.
+
2015-04-15 Jakub Jelinek <jakub@redhat.com>
PR ipa/65765
diff --git a/gcc/testsuite/gcc.target/i386/mpx/alloca-1-lbv.c b/gcc/testsuite/gcc.target/i386/mpx/alloca-1-lbv.c
index 57c05d33f89..1c77c192c17 100644
--- a/gcc/testsuite/gcc.target/i386/mpx/alloca-1-lbv.c
+++ b/gcc/testsuite/gcc.target/i386/mpx/alloca-1-lbv.c
@@ -16,7 +16,7 @@ int rd (int *p, int i)
int mpx_test (int argc, const char **argv)
{
- int *buf = (int *)__buitlin_alloca (100 * sizeof(int));
+ int *buf = (int *)__builtin_alloca (100 * sizeof(int));
rd (buf, -1);