From 3bacd94c312c35684ac5985d37c594acb62b2aa6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ingo=20M=C3=BCller?= Date: Wed, 23 Mar 2022 09:53:22 +0000 Subject: [PATCH] Fix link to Rationale document from doc on tuple. This also replaces the absolute link to the same document with a relative one in the same file. Reviewed By: rriddle Differential Revision: https://reviews.llvm.org/D121814 --- mlir/include/mlir/IR/BuiltinTypes.td | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mlir/include/mlir/IR/BuiltinTypes.td b/mlir/include/mlir/IR/BuiltinTypes.td index 4c035f8..41336b1 100644 --- a/mlir/include/mlir/IR/BuiltinTypes.td +++ b/mlir/include/mlir/IR/BuiltinTypes.td @@ -187,7 +187,7 @@ def Builtin_Index : Builtin_Type<"Index"> { ``` The index type is a signless integer whose size is equal to the natural - machine word of the target ( [rationale](https://mlir.llvm.org/docs/Rationale/Rationale/#integer-signedness-semantics) ) + machine word of the target ( [rationale](../../Rationale/Rationale/#integer-signedness-semantics) ) and is used by the affine constructs in MLIR. **Rationale:** integers of platform-specific bit widths are practical to @@ -755,7 +755,7 @@ def Builtin_Tuple : Builtin_Type<"Tuple", [ **Rationale:** Though this type is first class in the type system, MLIR provides no standard operations for operating on `tuple` types - ([rationale](Rationale/Rationale/#tuple-types)). + ([rationale](../../Rationale/Rationale/#tuple-types)). Examples: -- 2.7.4