Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 203 Bytes

README.md

File metadata and controls

12 lines (11 loc) · 203 Bytes

3.57

double funct3(int* ap, double b, long c, float *dp) {
  // ap in %rdi, b in %xmm0, c in %rsi, dp in %rdx
  if (b >= *ap) {
    return *dp * 2 + c;
  } else {
    return *dp * c;
  }
}