diff options
author | Paulo Matos <pmatos@igalia.com> | 2023-11-07 17:26:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-07 17:26:26 +0100 |
commit | 7b9d73c2f90c0ed8497339a16fc39785349d9610 (patch) | |
tree | 5f31fd1d5ffc20ce828ccf3b3d26a969f0528ba7 /llvm/lib/CodeGen/StackProtector.cpp | |
parent | 75d6795e420274346b14aca8b6bd49bfe6030eeb (diff) | |
download | llvm-7b9d73c2f90c0ed8497339a16fc39785349d9610.zip llvm-7b9d73c2f90c0ed8497339a16fc39785349d9610.tar.gz llvm-7b9d73c2f90c0ed8497339a16fc39785349d9610.tar.bz2 |
[NFC] Remove Type::getInt8PtrTy (#71029)
Replace this with PointerType::getUnqual().
Followup to the opaque pointer transition. Fixes an in-code TODO item.
Diffstat (limited to 'llvm/lib/CodeGen/StackProtector.cpp')
-rw-r--r-- | llvm/lib/CodeGen/StackProtector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/StackProtector.cpp b/llvm/lib/CodeGen/StackProtector.cpp index 3ba85bc..7167684 100644 --- a/llvm/lib/CodeGen/StackProtector.cpp +++ b/llvm/lib/CodeGen/StackProtector.cpp @@ -451,7 +451,7 @@ static bool CreatePrologue(Function *F, Module *M, Instruction *CheckLoc, const TargetLoweringBase *TLI, AllocaInst *&AI) { bool SupportsSelectionDAGSP = false; IRBuilder<> B(&F->getEntryBlock().front()); - PointerType *PtrTy = Type::getInt8PtrTy(CheckLoc->getContext()); + PointerType *PtrTy = PointerType::getUnqual(CheckLoc->getContext()); AI = B.CreateAlloca(PtrTy, nullptr, "StackGuardSlot"); Value *GuardSlot = getStackGuard(TLI, M, B, &SupportsSelectionDAGSP); @@ -622,7 +622,7 @@ BasicBlock *StackProtector::CreateFailBB() { if (Trip.isOSOpenBSD()) { StackChkFail = M->getOrInsertFunction("__stack_smash_handler", Type::getVoidTy(Context), - Type::getInt8PtrTy(Context)); + PointerType::getUnqual(Context)); Args.push_back(B.CreateGlobalStringPtr(F->getName(), "SSH")); } else { StackChkFail = |