aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/arch.h
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2018-07-25 17:42:32 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2018-07-25 17:42:32 +0200
commit790d7159bb0c31ea015b08313cf4713728f8b574 (patch)
tree4ecd8bdaf60ed1c246088e84b86f0912d12d3c0e /ecp5/arch.h
parenta8001daf6fd041f2133847b5cfef799afdba33ae (diff)
downloadnextpnr-790d7159bb0c31ea015b08313cf4713728f8b574.tar.gz
nextpnr-790d7159bb0c31ea015b08313cf4713728f8b574.tar.bz2
nextpnr-790d7159bb0c31ea015b08313cf4713728f8b574.zip
Fixed packing non pod
Diffstat (limited to 'ecp5/arch.h')
-rw-r--r--ecp5/arch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ecp5/arch.h b/ecp5/arch.h
index 4400db5e..b9fd43f8 100644
--- a/ecp5/arch.h
+++ b/ecp5/arch.h
@@ -98,7 +98,7 @@ NPNR_PACKED_STRUCT(struct LocationTypePOD {
});
NPNR_PACKED_STRUCT(struct PIOInfoPOD {
- Location abs_loc;
+ LocationPOD abs_loc;
int32_t bel_index;
RelPtr<char> function_name;
int16_t bank;
@@ -107,7 +107,7 @@ NPNR_PACKED_STRUCT(struct PIOInfoPOD {
NPNR_PACKED_STRUCT(struct PackagePinPOD {
RelPtr<char> name;
- Location abs_loc;
+ LocationPOD abs_loc;
int32_t bel_index;
});