ELF

2021-02-28 Thread Renaud Lelièvre via Gcc
Hi, i work on a windows 10 development platform and I will use the portable 
stdint and all and all I need. Mr. Ian Lance Taylor (Google) are not possible 
for my company.

Renaud Lelièvre
Montréal
#include  
#include  

struct microFields { 
unsigned int addr:28; 
unsigned int cond:2; 
unsigned int wr:1; 
unsigned int rd:1; 
unsigned int mar:1; 
unsigned int alu:3; 
unsigned int b:20; 
unsigned int a:20; 
unsigned int c:20; 
}; 

union micro { 
unsigned int microCode; 
struct microFields code; 
}; 

int main (void) { 
int typeAlu=0x11FE00; 
union micro test; 
test.microCode = 0x0001c000; 
typeAlu = test.code.alu; 
printf("%d \n", typeAlu); 
return EXIT_SUCCESS; 
} 


gcc-11-20210228 is now available

2021-02-28 Thread GCC Administrator via Gcc
Snapshot gcc-11-20210228 is now available on
  https://gcc.gnu.org/pub/gcc/snapshots/11-20210228/
and on various mirrors, see http://gcc.gnu.org/mirrors.html for details.

This snapshot has been generated from the GCC 11 git branch
with the following options: git://gcc.gnu.org/git/gcc.git branch master 
revision 3c173f7890cfd6649b687adc5b0598d9e01fcd6d

You'll find:

 gcc-11-20210228.tar.xz   Complete GCC

  SHA256=3e323aae8a946d383c5d8b22c807516dea766877b86b69efbc1cd6a744b4c4d6
  SHA1=3e2728c0f9fc447035ebd7e1d48df75797270d0f

Diffs from 11-20210221 are available in the diffs/ subdirectory.

When a particular snapshot is ready for public consumption the LATEST-11
link is updated and a message is sent to the gcc list.  Please do not use
a snapshot before it has been announced that way.