Skip to content

Commit

Permalink
修正 LLVM 类型说明中的笔误 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lord-Turmoil authored Nov 5, 2024
1 parent cc2ab60 commit 7eca4f7
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs/tutorials/05-intermediate-representation.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,14 @@ enum class ValueType {
````c++
enum TypeID {
// Primitive types
VoidTyID, //空返回值
LabelTyID, //标签类型
VoidTyID, // 空返回值
LabelTyID, // 标签类型
// Derived types
IntegerTyID, //整数类型
FunctionTyID, //浮点数类型
PointerTyID //指针类型
IntegerTyID, // 整数类型
FloatTyID, // 浮点数类型
FunctionTyID, // 函数类型
PointerTyID // 指针类型
};
````
Expand Down

0 comments on commit 7eca4f7

Please sign in to comment.