__restrict__ c++98

void f34(int &__restrict__ a, int & b, int &__restrict__ c){
    a += c;
    b += c;
}

void f35(int & a, int & b, int & c){
    a += c;
    b += c;
}

 

 

0000000000000020 <_Z3f34RiS_S_>:
  20:    8b 02                    mov    (%rdx),%eax
  22:    01 07                    add    %eax,(%rdi)
  24:    01 06                    add    %eax,(%rsi)
  26:    c3                       retq   
  27:    66 0f 1f 84 00 00 00     nopw   0x0(%rax,%rax,1)
  2e:    00 00

0000000000000030 <_Z3f35RiS_S_>:
  30:    8b 02                    mov    (%rdx),%eax
  32:    01 07                    add    %eax,(%rdi)
  34:    8b 02                    mov    (%rdx),%eax
  36:    01 06                    add    %eax,(%rsi)
  38:    c3                       retq   

posted @ 2020-03-20 10:58  zJanly  阅读(250)  评论(0编辑  收藏  举报