Home | History | Annotate | Download | only in s390x

Lines Matching defs:cc

12    int cc = 1 - expected_cc; 
22 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3)
24 : "cc");
29 printf("cc = %d\n", cc);
31 if (cc != expected_cc) {
35 printf("cc = 0, but result != 0\n");
38 printf("cc = 1, but result >= 0\n");
41 printf("cc = 2, but result <= 0\n");
43 /* the test for cc = 3 is left as an exercise for the reader. */