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.5.1/] [gcc/] [testsuite/] [gcc.target/] [x86_64/] [abi/] [avx/] [avx-check.h] - Blame information for rev 328

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 328 jeremybenn
#include <stdlib.h>
2
#include "cpuid.h"
3
 
4
static void avx_test (void);
5
 
6
int
7
main ()
8
{
9
  unsigned int eax, ebx, ecx, edx;
10
 
11
  if (!__get_cpuid (1, &eax, &ebx, &ecx, &edx))
12
    return 0;
13
 
14
  /* Run AVX test only if host has AVX support.  */
15
  if (ecx & bit_AVX)
16
    {
17
      avx_test ();
18
#ifdef DEBUG
19
      printf ("PASSED\n");
20
#endif
21
    }
22
#ifdef DEBUG
23
  else
24
    printf ("SKIPPED\n");
25
#endif
26
 
27
  return 0;
28
}

powered by: WebSVN 2.1.0

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