aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/cmov/cmov2.c
blob: 6ecab61b35cb541ffa5cc3cd93807950a067bdfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <stdio.h>

long cmovl(int x, long y, long z) {
  return x ? y : z;
}

int cmovi(int x, int y, int z) {
  return x ? y : z;
}

double cmovd(int x, double y, double z) {
  return x ? y : z;
}

float cmovf(int x, float y, float z) {
  return x ? y : z;
}

int main() {
  printf("%ld\n", cmovl(1, 42, 65));
  printf("%ld\n", cmovl(0, 42, 65));
  printf("%d\n", cmovi(1, 42, 65));
  printf("%d\n", cmovi(0, 42, 65));
  printf("%f\n", cmovd(1, 42., 65.));
  printf("%f\n", cmovd(0, 42., 65.));
  printf("%f\n", cmovf(1, 42.f, 65.f));
  printf("%f\n", cmovf(0, 42.f, 65.f));
}