On Thu, Jun 15, 2023 at 7:05 PM Eduard Zingerman <eddyz87@xxxxxxxxx> wrote: > > On Thu, 2023-06-15 at 17:44 +0200, Florent Revest wrote: > > An easy reproducer is: > > > > $ touch pwet.c > > > > $ clang -g -fsanitize=kernel-address -c -o pwet.o pwet.c > > $ llvm-dwarfdump pwet.o | grep module_ctor > > > > $ clang -fno-integrated-as -g -fsanitize=kernel-address -c -o pwet.o pwet.c > > $ llvm-dwarfdump pwet.o | grep module_ctor > > DW_AT_name ("asan.module_ctor") > > Interestingly, I am unable to reproduce it using either > clang version 14.0.0-1ubuntu1 or clang main (bd66f4b1da30). Somehow, I didn't think of trying other clang versions! Thanks, that's a good point Eduard. :) I also can't reproduce it on a 14x build. However, I seem to be able to reproduce it on main: git clone https://github.com/llvm/llvm-project.git mkdir llvm-project/build cd llvm-project/build git checkout bd66f4b1da30 cmake -DLLVM_ENABLE_PROJECTS=clang -DCMAKE_BUILD_TYPE=Release -G "Unix Makefiles" ../llvm make -j $(nproc) bin/clang -fno-integrated-as -g -fsanitize=kernel-address -c -o ~/pwet.o ~/pwet.c bin/llvm-dwarfdump ~/pwet.o | grep module_ctor # Shows module_ctor I started a bisection, hopefully that will point to something interesting