OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [builtins-12.c] - Blame information for rev 645

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 149 jeremybenn
/* Copyright (C) 2003  Free Software Foundation.
2
 
3
   Verify that all the malloc-like __builtin_ allocation functions are
4
   recognized by the compiler.
5
 
6
   Written by Roger Sayle, 12th April 2003.  */
7
 
8
/* { dg-do compile } */
9
/* { dg-final { scan-assembler-not "__builtin_" } } */
10
 
11
typedef __SIZE_TYPE__ size_t;
12
 
13
void *test1(size_t n)
14
{
15
  return __builtin_malloc(n);
16
}
17
 
18
void *test2(size_t n, size_t s)
19
{
20
  return __builtin_calloc(n,s);
21
}
22
 
23
char *test3(const char *ptr)
24
{
25
  return __builtin_strdup(ptr);
26
}
27
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.