[clang] [compiler-rt] [llvm] [ASan] Add metadata to renamed instructions so ASan doesn't use the i… (PR #119387)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 20 06:50:00 PST 2025
================
@@ -3425,12 +3446,14 @@ void FunctionStackPoisoner::processStaticAllocas() {
ArgInitInst->moveBefore(InsBefore);
// If we have a call to llvm.localescape, keep it in the entry block.
- if (LocalEscapeCall) LocalEscapeCall->moveBefore(InsBefore);
+ if (LocalEscapeCall)
+ LocalEscapeCall->moveBefore(InsBefore);
----------------
gbMattN wrote:
Good catch, I think I was overzealous on the clang-format
https://github.com/llvm/llvm-project/pull/119387
More information about the llvm-commits
mailing list