blob: d38d7ee784fc322ce0e7385b663bda5becb39237 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* { dg-do run } */
/* { dg-options "-madx -O2" } */
/* { dg-require-effective-target adx } */
#include <x86intrin.h>
#include "adx-check.h"
static void
adx_test (void)
{
volatile unsigned char c;
unsigned int x;
volatile unsigned int y, sum_ref;
c = 0;
x = y = 0xFFFFFFFF;
sum_ref = 0xFFFFFFFE;
/* X = 0xFFFFFFFF, Y = 0xFFFFFFFF, C = 0. */
c = _addcarryx_u32 (c, x, y, &x);
/* X = 0xFFFFFFFE, Y = 0xFFFFFFFF, C = 1. */
c = _addcarryx_u32 (c, x, y, &x);
/* X = 0xFFFFFFFE, Y = 0xFFFFFFFF, C = 1. */
if (x != sum_ref)
abort ();
}
|