```cpp void f(){} ``` With -O3, GCC outputs this: ```asm f(): rts ``` LLVM outputs this: ```asm f(): ; @f() link.w %a6, #0 unlk %a6 rts ```