view gcc/testsuite/c-c++-common/cxxbitfields-3.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
line wrap: on
line source

/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-O2 -fno-allow-store-data-races" } */

/* Make sure we don't narrow down to a QI or HI to store into VAR.J,
   but instead use an SI.  */

struct S
{ 
  volatile int i: 4;
  volatile int j: 4;
  volatile int k: 8;
  volatile int l: 8;
  volatile int m: 8;
} var;

void setit()
{ 
  var.j = 5;
}

/* { dg-final { scan-assembler "movl.*, _?var" { target nonpic } } } */
/* { dg-final { scan-assembler "movl.*, (_?var|\\(%)" { target { ! nonpic } } } } */