gcc/testsuite/
* gcc.dg/torture/pr69352.c (foo): Cast to intptr_t instead of long.
* gcc.dg/torture/pr69771.c: Require int32plus.
* gcc.dg/torture/pr71866.c (inb): Add cast to intptr_t.
From-SVN: r238708
+2016-07-25 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
+
+ * gcc.dg/torture/pr69352.c (foo): Cast to intptr_t instead of long.
+ * gcc.dg/torture/pr69771.c: Require int32plus.
+ * gcc.dg/torture/pr71866.c (inb): Add cast to intptr_t.
+
2016-07-25 Martin Liska <mliska@suse.cz>
* gcc.dg/torture/pr71987.c: New test.
/* { dg-do compile } */
+#include <stdint.h>
+
int a[10][14], b, c, d, e, f, g, h, i;
void bar (void);
int
else
m = 13;
if (a[x][m])
- l = (long) foo;
+ l = (intptr_t) foo;
a[x][i] = l;
while (c)
{
/* PR rtl-optimization/69771 */
/* { dg-do compile } */
+/* { dg-require-effective-target int32plus } */
unsigned char a = 5, c;
unsigned short b = 0;
/* { dg-do compile } */
/* { dg-additional-options "-ftree-pre -fcode-hoisting" } */
+#include <stdint.h>
typedef unsigned char u8;
extern unsigned long pci_io_base;
u8 in_8 (const volatile void *);
static inline
u8 inb (unsigned long port)
{
- return readb((volatile void *)pci_io_base + port);
+ return readb((volatile void *)(intptr_t)pci_io_base + port);
}
static inline
void outb (u8 val, unsigned long port)