Skip to content

Commit

Permalink
Update some comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
sciguyryan committed Feb 5, 2025
1 parent 180306b commit b8732fb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions redox-core/src/parsing/asm_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1251,8 +1251,10 @@ mod tests_asm_parsing {

#[test]
fn code_misc_tests() {
let tests = [ParserTest::new(
"mov eax,\\\nebx",
let tests = [
// Testing line continuation.
ParserTest::new(
"mov eax,\\\r\nebx",
&[Instruction::MovU32RegU32Reg(
RegisterId::EAX,
RegisterId::EBX,
Expand Down

0 comments on commit b8732fb

Please sign in to comment.