blob: 1b58cfd4af6a08443f77a0467bea3c36255c0b9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Test that we generate aligned load when memory is aligned. */
/* { dg-do compile } */
/* { dg-require-effective-target dfp } */
/* { dg-options "-O -march=x86-64 -mtune=generic -std=gnu99" } */
/* { dg-final { scan-assembler-not "movdqu" } } */
/* { dg-final { scan-assembler "movdqa" { target { ! x86_64-*-mingw* } } } } */
extern _Decimal128 foo (_Decimal128, _Decimal128, _Decimal128);
void
bar (void)
{
foo (0, 0, 0);
}
|