diff options
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/adx-addcarryx64-3.c')
-rw-r--r-- | gcc/testsuite/gcc.target/i386/adx-addcarryx64-3.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.target/i386/adx-addcarryx64-3.c b/gcc/testsuite/gcc.target/i386/adx-addcarryx64-3.c new file mode 100644 index 00000000000..4bbf74bfc2d --- /dev/null +++ b/gcc/testsuite/gcc.target/i386/adx-addcarryx64-3.c @@ -0,0 +1,15 @@ +/* { dg-do compile { target { ! ia32 } } } */ +/* { dg-options "-mno-adx -O2" } */ +/* { dg-final { scan-assembler "adcq" } } */ + +#include <x86intrin.h> + +volatile unsigned char c; +volatile unsigned long long x, y; +unsigned long long *sum; + +void extern +adx_test (void) +{ + c = _addcarryx_u64 (c, x, y, sum); +} |