[Mlir-commits] [mlir] 3bacd94 - Fix link to Rationale document from doc on tuple.
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Wed Mar 23 02:58:47 PDT 2022
Author: Ingo Müller
Date: 2022-03-23T09:53:31Z
New Revision: 3bacd94c312c35684ac5985d37c594acb62b2aa6
URL: https://github.com/llvm/llvm-project/commit/3bacd94c312c35684ac5985d37c594acb62b2aa6
DIFF: https://github.com/llvm/llvm-project/commit/3bacd94c312c35684ac5985d37c594acb62b2aa6.diff
LOG: 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
Added:
Modified:
mlir/include/mlir/IR/BuiltinTypes.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/IR/BuiltinTypes.td b/mlir/include/mlir/IR/BuiltinTypes.td
index 4c035f8fad0d5..41336b1ea02c9 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:
More information about the Mlir-commits
mailing list