File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ For other versions, check the git tags of this repository.
24
24
* LLVM: Fix ` Triple::isTargetEHABICompatible() ` for NetBSD
25
25
* Clang: Ignore the examples directory
26
26
* Clang: Disable building of libclang-cpp.so.
27
+ * Clang: Correctly define ` IntPtrType ` for MIPS
27
28
* LLD: Added additional include directory to Zig's libunwind.
28
29
* LLD: Respect ` LLD_BUILD_TOOLS=OFF `
29
30
* LLD: Skip building docs
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ class LLVM_LIBRARY_VISIBILITY MipsTargetInfo : public TargetInfo {
129
129
LongWidth = LongAlign = 32 ;
130
130
MaxAtomicPromoteWidth = MaxAtomicInlineWidth = 32 ;
131
131
PointerWidth = PointerAlign = 32 ;
132
- PtrDiffType = SignedInt;
132
+ PtrDiffType = IntPtrType = SignedInt;
133
133
SizeType = UnsignedInt;
134
134
SuitableAlign = 64 ;
135
135
}
@@ -155,7 +155,7 @@ class LLVM_LIBRARY_VISIBILITY MipsTargetInfo : public TargetInfo {
155
155
IntMaxType = Int64Type;
156
156
LongWidth = LongAlign = 64 ;
157
157
PointerWidth = PointerAlign = 64 ;
158
- PtrDiffType = SignedLong;
158
+ PtrDiffType = IntPtrType = SignedLong;
159
159
SizeType = UnsignedLong;
160
160
}
161
161
@@ -165,7 +165,7 @@ class LLVM_LIBRARY_VISIBILITY MipsTargetInfo : public TargetInfo {
165
165
IntMaxType = Int64Type;
166
166
LongWidth = LongAlign = 32 ;
167
167
PointerWidth = PointerAlign = 32 ;
168
- PtrDiffType = SignedInt;
168
+ PtrDiffType = IntPtrType = SignedInt;
169
169
SizeType = UnsignedInt;
170
170
}
171
171
You can’t perform that action at this time.
0 commit comments