We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
gfx
1 parent 923c1a2 commit 0956860Copy full SHA for 0956860
CHANGELOG.md
@@ -1,5 +1,7 @@
1
# splat Release Notes
2
3
+* Fix `gfx` segments sometimes not picking up properly the corresponding typed reference.
4
+
5
### 0.36.3
6
7
* Fix not generating nonmatching `.s` files for quoted symbols.
src/splat/segtypes/segment.py
@@ -811,8 +811,7 @@ def retrieve_sym_type(
811
items = [
812
i
813
for i in items
814
- if i.segment is None
815
- or Segment.visible_ram(self, i.segment)
+ if (i.segment is None or Segment.visible_ram(self, i.segment))
816
and (type == i.type)
817
]
818
0 commit comments