PacktPublishing / Learn-LLVM-12

Learn LLVM 12, published by Packt
MIT License
474 stars 103 forks source link

Fixed a dangling pointer compilation warning [-Wdangling-gsl] #31

Open JolaJensen opened 5 months ago

JolaJensen commented 5 months ago

This commit prevents accessing invalid memory. Full warning message (cmake version 3.28.1): Chapter07/tinylang/lib/CodeGen/CGTBAA.cpp:68:22: warning: object backing the pointer will be destroyed at the end of the full-expression [-Wdangling-gsl] StringRef Name = CGM.mangleName(Record); ^~~~~~