RE: [PATCH] Fix confusion between target, host and symbolic number byte sizes

2014-08-20 Thread Thomas Preud'homme
Sent: Friday, July 04, 2014 12:53 PM To: gcc-patches@gcc.gnu.org Subject: [PATCH] Fix confusion between target, host and symbolic number byte sizes The bswap pass deals with 3 possibly different byte size: host, target and the size a byte marker occupied in the symbolic_number

RE: [PATCH] Fix confusion between target, host and symbolic number byte sizes

2014-08-14 Thread Thomas Preud'homme
Preud'homme Sent: Friday, July 04, 2014 12:53 PM To: gcc-patches@gcc.gnu.org Subject: [PATCH] Fix confusion between target, host and symbolic number byte sizes The bswap pass deals with 3 possibly different byte size: host, target and the size a byte marker occupied in the symbolic_number

[PATCH] Fix confusion between target, host and symbolic number byte sizes

2014-07-03 Thread Thomas Preud'homme
The bswap pass deals with 3 possibly different byte size: host, target and the size a byte marker occupied in the symbolic_number structure [1]. However, as of now the code mixes the three size. This works in practice as the pass is only enabled for target with BITS_PER_UNIT == 8 and nobody