Lines Matching full:fp128
4 define i32 @TestComp128GT(fp128 %d1, fp128 %d2) {
6 %cmp = fcmp ogt fp128 %d1, %d2
17 define i32 @TestComp128GE(fp128 %d1, fp128 %d2) {
19 %cmp = fcmp oge fp128 %d1, %d2
31 define i32 @TestComp128LT(fp128 %d1, fp128 %d2) {
33 %cmp = fcmp olt fp128 %d1, %d2
46 define i32 @TestComp128LE(fp128 %d1, fp128 %d2) {
48 %cmp = fcmp ole fp128 %d1, %d2
60 define i32 @TestComp128EQ(fp128 %d1, fp128 %d2) {
62 %cmp = fcmp oeq fp128 %d1, %d2
74 define i32 @TestComp128NE(fp128 %d1, fp128 %d2) {
76 %cmp = fcmp une fp128 %d1, %d2
88 define fp128 @TestMax(fp128 %x, fp128 %y) {
90 %cmp = fcmp ogt fp128 %x, %y
91 %cond = select i1 %cmp, fp128 %x, fp128 %y
92 ret fp128 %cond