Skip to content

Commit 6cd7500

Browse files
authored
[llvm][IR] Remove method IRBuilderBase::getInt8PtrTy (#74096)
Users should migrate to IRBuilderBase::getPtrTy.
1 parent f40d251 commit 6cd7500

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

llvm/include/llvm/IR/IRBuilder.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -564,11 +564,6 @@ class IRBuilderBase {
564564
return PointerType::get(Context, AddrSpace);
565565
}
566566

567-
/// Fetch the type representing a pointer to an 8-bit integer value.
568-
PointerType *getInt8PtrTy(unsigned AddrSpace = 0) {
569-
return getPtrTy(AddrSpace);
570-
}
571-
572567
/// Fetch the type of an integer with size at least as big as that of a
573568
/// pointer in the given address space.
574569
IntegerType *getIntPtrTy(const DataLayout &DL, unsigned AddrSpace = 0) {

0 commit comments

Comments
 (0)