Replace __buitlin_alloca with __builtin_alloca
authorH.J. Lu <hongjiu.lu@intel.com>
Thu, 16 Apr 2015 15:34:11 +0000 (15:34 +0000)
committerH.J. Lu <hjl@gcc.gnu.org>
Thu, 16 Apr 2015 15:34:11 +0000 (08:34 -0700)
* gcc.target/i386/mpx/alloca-1-lbv.c (mpx_test): Replace
__buitlin_alloca with __builtin_alloca.

From-SVN: r222151

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/mpx/alloca-1-lbv.c

index 05da783..adb1192 100644 (file)
@@ -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-16  Alan Lawrence  <alan.lawrence@arm.com>
 
        * gcc.target/aarch64/vldN_lane_1.c: Correct dup->lane in comments.
index 57c05d3..1c77c19 100644 (file)
@@ -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);