for example
void f(){ wchar_t s[]=L"aaaaaaaaa";}
is compiled into something like
.section .rdataLC0:.ascii "a\0a\0a\0a\0a\0a\0\0".section .textmovl LC0,%eaxmovl %eax,0x888(%esp)...
Is it possible to avoid the dependence on another section? Such as
movl $0x00610061,0x888(%esp);movl $0x00610061,0x88c(%esp);...