Commit f3ffa342 by Dominique d'Humieres Committed by Dominique d'Humieres

re PR target/71017 (libgcc/config/i386/cpuinfo.c:346:17: runtime error: left…

re PR target/71017 (libgcc/config/i386/cpuinfo.c:346:17: runtime error: left shift of 1 by 31 places cannot be represented in type 'int')

2017-01-23  Dominique d'Humieres  <dominiq@lps.ens.fr>

	PR target/71017
	* config/i386/cpuid.h: Fix another undefined behavior.

From-SVN: r245680
parent 45f7faf0
2017-01-23 Dominique d'Humieres <dominiq@lps.ens.fr>
PR target/71017
* config/i386/cpuid.h: Fix another undefined behavior.
2017-02-23 Richard Biener <rguenther@suse.de> 2017-02-23 Richard Biener <rguenther@suse.de>
PR tree-optimization/79683 PR tree-optimization/79683
......
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
#define bit_MMXEXT (1 << 22) #define bit_MMXEXT (1 << 22)
#define bit_LM (1 << 29) #define bit_LM (1 << 29)
#define bit_3DNOWP (1 << 30) #define bit_3DNOWP (1 << 30)
#define bit_3DNOW (1 << 31) #define bit_3DNOW (1u << 31)
/* %ebx */ /* %ebx */
#define bit_CLZERO (1 << 0) #define bit_CLZERO (1 << 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment