Skip to content

Commit

Permalink
Update guidance.md
Browse files Browse the repository at this point in the history
  • Loading branch information
liuly0322 authored Nov 8, 2023
1 parent 262790d commit db0b514
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/lab3/guidance.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ $ echo $?

你可以通过观察原来的 `.ll` 代码来推断 `echo $?` 应该返回的正确结果,也可以直接使用 `lli` 执行 `.ll` 文件来获取正确结果。

!!! note

请注意,`echo $?` 返回的值是 qemu 执行完毕后的退出状态,也就是你的程序的返回值。由于 Linux 系统的限制,这个返回值只包含低 8 位,即范围在 0 到 255 之间。如果你的程序返回值超过了这个范围,那么 `echo $?` 将只显示该返回值的低 8 位。

## 阶段二:编译器后端

### 仓库目录结构
Expand Down

0 comments on commit db0b514

Please sign in to comment.