From ef257a224471d82f5ec6e41fa1fd004676a1b669 Mon Sep 17 00:00:00 2001 From: Lord Turmoil Date: Tue, 5 Nov 2024 20:48:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=20LLVM=20=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E8=AF=B4=E6=98=8E=E4=B8=AD=E7=9A=84=E7=AC=94=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/tutorials/05-intermediate-representation.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/tutorials/05-intermediate-representation.md b/docs/tutorials/05-intermediate-representation.md index b9549f6..05d58b0 100644 --- a/docs/tutorials/05-intermediate-representation.md +++ b/docs/tutorials/05-intermediate-representation.md @@ -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 // 指针类型 }; ````