aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/arch_place.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-06-12 14:31:26 +0200
committerClifford Wolf <clifford@clifford.at>2018-06-12 14:31:26 +0200
commit426fb75bb5c48d32d36bfbeaa89ec2c5eb8860c0 (patch)
tree24d1bc7ff70151c4a95cf947e2be337e4e3c0332 /ice40/arch_place.h
parentd62e341d5a3183d6fdb7168afb978068a396e9a4 (diff)
downloadnextpnr-426fb75bb5c48d32d36bfbeaa89ec2c5eb8860c0.tar.gz
nextpnr-426fb75bb5c48d32d36bfbeaa89ec2c5eb8860c0.tar.bz2
nextpnr-426fb75bb5c48d32d36bfbeaa89ec2c5eb8860c0.zip
Fix NEXTPNR_NAMESPACE
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'ice40/arch_place.h')
-rw-r--r--ice40/arch_place.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ice40/arch_place.h b/ice40/arch_place.h
index 8f8ce806..a505f4db 100644
--- a/ice40/arch_place.h
+++ b/ice40/arch_place.h
@@ -23,9 +23,13 @@
#include "nextpnr.h"
// Architecure-specific placement functions
+NEXTPNR_NAMESPACE_BEGIN
+
// Whether or not a given cell can be placed at a given Bel
// This is not intended for Bel type checks, but finer-grained constraints
// such as conflicting set/reset signals, etc
bool isValidBelForCell(Design *design, CellInfo *cell, BelId bel);
+NEXTPNR_NAMESPACE_END
+
#endif