diff options
author | Daniil Kovalev <dkovalev@accesssoftek.com> | 2024-03-02 14:48:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-02 14:48:46 +0300 |
commit | bf08d0286825eb3e482bcfdc1cc7c19a28441ae7 (patch) | |
tree | 63f65f6da56478dfa67072981d0f82848278798f /llvm/lib/IR/DebugInfo.cpp | |
parent | c4f59937cae95a576635848b36a23b0d672f71d6 (diff) | |
download | llvm-bf08d0286825eb3e482bcfdc1cc7c19a28441ae7.zip llvm-bf08d0286825eb3e482bcfdc1cc7c19a28441ae7.tar.gz llvm-bf08d0286825eb3e482bcfdc1cc7c19a28441ae7.tar.bz2 |
Revert "[Dwarf] Support `__ptrauth` qualifier in metadata nodes" (#83672)
Reverts llvm/llvm-project#82363
See a build failure related to an issue discovered by memory sanitizer
(use of uninitialized value):
https://lab.llvm.org/buildbot/#/builders/37/builds/31965
Diffstat (limited to 'llvm/lib/IR/DebugInfo.cpp')
-rw-r--r-- | llvm/lib/IR/DebugInfo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/IR/DebugInfo.cpp b/llvm/lib/IR/DebugInfo.cpp index 510cc31..1f3ff22 100644 --- a/llvm/lib/IR/DebugInfo.cpp +++ b/llvm/lib/IR/DebugInfo.cpp @@ -1336,9 +1336,9 @@ LLVMMetadataRef LLVMDIBuilderCreatePointerType( LLVMDIBuilderRef Builder, LLVMMetadataRef PointeeTy, uint64_t SizeInBits, uint32_t AlignInBits, unsigned AddressSpace, const char *Name, size_t NameLen) { - return wrap(unwrap(Builder)->createPointerType( - unwrapDI<DIType>(PointeeTy), SizeInBits, AlignInBits, AddressSpace, - {Name, NameLen})); + return wrap(unwrap(Builder)->createPointerType(unwrapDI<DIType>(PointeeTy), + SizeInBits, AlignInBits, + AddressSpace, {Name, NameLen})); } LLVMMetadataRef LLVMDIBuilderCreateStructType( |