mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Reapply "DebugInfo: Loosen DILexicalBlock constructor"
This reverts commit r234225, reapplying r234222 in spirit. This time, just include what the commit message actually describes: loosen the `DILexicalBlock` constructor to require a `MDLexicalBlockBase`, since that's what `DILexicalBlock` is wrapping. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234241 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1114e434b0
commit
23e0384808
@ -704,7 +704,7 @@ public:
|
||||
class DILexicalBlock : public DIScope {
|
||||
public:
|
||||
explicit DILexicalBlock(const MDNode *N = nullptr) : DIScope(N) {}
|
||||
DILexicalBlock(const MDLexicalBlock *N) : DIScope(N) {}
|
||||
DILexicalBlock(const MDLexicalBlockBase *N) : DIScope(N) {}
|
||||
|
||||
MDLexicalBlockBase *get() const {
|
||||
return cast_or_null<MDLexicalBlockBase>(DIDescriptor::get());
|
||||
|
Loading…
x
Reference in New Issue
Block a user