Allow using constant as size argument to data.fill

This commit is contained in:
mebibytedraco 2024-02-22 13:25:03 -05:00 committed by xenia
parent 154e6e2dbc
commit 3f885724fd

View File

@ -695,6 +695,8 @@ fn parse_data(pair: pest::iterators::Pair<Rule>) -> AstNode {
let ast = parse_operand(pair.into_inner().nth(1).unwrap(), false);
if let AstNode::Immediate32(word) = ast {
word
} else if let AstNode::Constant {name: _, address} = ast {
address
} else {
unreachable!()
}