There's one more bug with the imm of U-Types, trying to find it
This commit is contained in:
parent
3ee54491be
commit
98c8e3d4eb
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ fn parse_line(env: &Env, input: &str, loc: &mut Loc) -> Result<Vec<(Token, Loc)>
|
||||||
loc.end += 1;
|
loc.end += 1;
|
||||||
}
|
}
|
||||||
if let Some('(') | Some(' ') | None = chars.peek() {
|
if let Some('(') | Some(' ') | None = chars.peek() {
|
||||||
Immediate(num.parse().unwrap())
|
dbg!(Immediate(num.parse().unwrap()))
|
||||||
} else {
|
} else {
|
||||||
let err = Err((
|
let err = Err((
|
||||||
SyntaxErr::UnexpectedChar,
|
SyntaxErr::UnexpectedChar,
|
||||||
|
|
Loading…
Reference in a new issue