Host and offload targets have no common meaning of address spaces
gcc/ * tree-streamer-out.c (pack_ts_base_value_fields): Don't pack 'TYPE_ADDR_SPACE' for offloading. * tree-streamer-in.c (unpack_ts_base_value_fields): Don't unpack 'TYPE_ADDR_SPACE' for offloading. libgomp/ * testsuite/libgomp.c/address-space-1.c: Remove 'dg-xfail-run-if' for 'offload_device_intel_mic'.
This commit is contained in:
parent
e52253bcc0
commit
9fcc3a1dd2
@ -146,7 +146,9 @@ unpack_ts_base_value_fields (struct bitpack_d *bp, tree expr)
|
||||
TYPE_REVERSE_STORAGE_ORDER (expr) = (unsigned) bp_unpack_value (bp, 1);
|
||||
else
|
||||
TYPE_SATURATING (expr) = (unsigned) bp_unpack_value (bp, 1);
|
||||
#ifndef ACCEL_COMPILER
|
||||
TYPE_ADDR_SPACE (expr) = (unsigned) bp_unpack_value (bp, 8);
|
||||
#endif
|
||||
}
|
||||
else if (TREE_CODE (expr) == BIT_FIELD_REF || TREE_CODE (expr) == MEM_REF)
|
||||
{
|
||||
|
@ -119,7 +119,12 @@ pack_ts_base_value_fields (struct bitpack_d *bp, tree expr)
|
||||
bp_pack_value (bp, TYPE_REVERSE_STORAGE_ORDER (expr), 1);
|
||||
else
|
||||
bp_pack_value (bp, TYPE_SATURATING (expr), 1);
|
||||
bp_pack_value (bp, TYPE_ADDR_SPACE (expr), 8);
|
||||
if (lto_stream_offload_p)
|
||||
/* Host and offload targets have no common meaning of address
|
||||
spaces. */
|
||||
;
|
||||
else
|
||||
bp_pack_value (bp, TYPE_ADDR_SPACE (expr), 8);
|
||||
}
|
||||
else if (TREE_CODE (expr) == BIT_FIELD_REF || TREE_CODE (expr) == MEM_REF)
|
||||
{
|
||||
|
@ -3,10 +3,6 @@
|
||||
/* { dg-do run { target i?86-*-* x86_64-*-* } } */
|
||||
/* { dg-require-effective-target offload_device_nonshared_as } */
|
||||
|
||||
/* With Intel MIC (emulated) offloading:
|
||||
offload error: process on the device 0 unexpectedly exited with code 0
|
||||
{ dg-xfail-run-if TODO { offload_device_intel_mic } } */
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
int __seg_fs a;
|
||||
|
Loading…
Reference in New Issue
Block a user