We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5d08ec7 + 9789034 commit 6013b36Copy full SHA for 6013b36
common_power.h
@@ -841,17 +841,17 @@ Lmcount$lazy_ptr:
841
#endif
842
843
#if defined(PPC440)
844
-#define BUFFER_SIZE ( 2 << 20)
+#define BUFFER_SIZE ( 2UL << 20)
845
#elif defined(PPC440FP2)
846
-#define BUFFER_SIZE ( 16 << 20)
+#define BUFFER_SIZE ( 16UL << 20)
847
#elif defined(POWER6) || defined(POWER8) || defined(POWER9) || defined(POWER10)
848
-#define BUFFER_SIZE ( 64 << 22)
+#define BUFFER_SIZE ( 64UL << 22)
849
#else
850
851
852
#ifdef DYNAMIC_ARCH
853
#undef BUFFER_SIZE
854
-#define BUFFER_SIZE (64 << 22)
+#define BUFFER_SIZE (64UL << 22)
855
856
857
#ifndef PAGESIZE
0 commit comments