diff options
| author | Akira Hatanaka <ahatanak@gmail.com> | 2024-03-27 18:14:04 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-27 18:14:04 -0700 |
| commit | f75eebab887903567906d22e790a3be20a2a6438 (patch) | |
| tree | f3f2db821ec8c8ea45cac0837a80a7c9d4c76b52 /clang/lib/CodeGen/CodeGenModule.cpp | |
| parent | cc98ffb6dc6ca3e68fd939558eb8c4ddb1cc03de (diff) | |
Revert "[CodeGen][arm64e] Add methods and data members to Address, which are needed to authenticate signed pointers (#86721)" (#86898)
This reverts commit d9a685a9dd589486e882b722e513ee7b8c84870c.
The commit broke ubsan bots.
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
| -rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 00b3bfcaa0bc..e3ed5e90f2d3 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -7267,7 +7267,7 @@ void CodeGenFunction::EmitDeclMetadata() { for (auto &I : LocalDeclMap) { const Decl *D = I.first; - llvm::Value *Addr = I.second.emitRawPointer(*this); + llvm::Value *Addr = I.second.getPointer(); if (auto *Alloca = dyn_cast<llvm::AllocaInst>(Addr)) { llvm::Value *DAddr = GetPointerConstant(getLLVMContext(), D); Alloca->setMetadata( |
