aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-04-20 21:07:47 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-04-20 21:07:47 +0300
commitcb71bb6ad44d5e6ea4d4af4896c23088957cbdb3 (patch)
treedf833624ae4563b83a4e9fa139ced0ccc3e5b25b /include
parent78d992ff3052db9dc98a3074e8a4423760c342f1 (diff)
downloadqbt-cb71bb6ad44d5e6ea4d4af4896c23088957cbdb3.tar.gz
qbt-cb71bb6ad44d5e6ea4d4af4896c23088957cbdb3.zip
fix parallel moves
Diffstat (limited to 'include')
-rw-r--r--include/qbt/abi.h6
-rw-r--r--include/qbt/nodes.h2
2 files changed, 5 insertions, 3 deletions
diff --git a/include/qbt/abi.h b/include/qbt/abi.h
index 6776cae..e0c32ac 100644
--- a/include/qbt/abi.h
+++ b/include/qbt/abi.h
@@ -131,7 +131,7 @@ enum {
RA21,
RA22,
RA23,
- RA24,
+ RTMP0,
RT7,
RT8,
RT9,
@@ -149,7 +149,7 @@ enum {
RT21,
RT22,
RT23,
- RT24,
+ RTMP1,
RS7,
RS8,
RS9,
@@ -167,7 +167,7 @@ enum {
RS21,
RS22,
RS23,
- RS24,
+ RTMP2,
};
#define FOREACH_REG(M) \
diff --git a/include/qbt/nodes.h b/include/qbt/nodes.h
index 49cb11a..f51a32f 100644
--- a/include/qbt/nodes.h
+++ b/include/qbt/nodes.h
@@ -357,4 +357,6 @@ static inline void insn_insert(struct blk *b, struct insn i, size_t pos)
vec_insert(&b->insns, &i, pos);
}
+bool return_blk(struct blk *b);
+
#endif /* NODES_H */