File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,21 +86,21 @@ def G_TRUNC : GenericInstruction {
86
86
let hasSideEffects = false;
87
87
}
88
88
89
- // Truncate the signed saturated operand to a signed result with saturation.
89
+ // Truncate the signed operand to a signed result with saturation.
90
90
def G_TRUNC_SSAT_S : GenericInstruction {
91
91
let OutOperandList = (outs type0:$dst);
92
92
let InOperandList = (ins type1:$src);
93
93
let hasSideEffects = false;
94
94
}
95
95
96
- // Truncate the signed saturated operand to an unsigned result with saturation.
96
+ // Truncate the signed operand to an unsigned result with saturation.
97
97
def G_TRUNC_SSAT_U : GenericInstruction {
98
98
let OutOperandList = (outs type0:$dst);
99
99
let InOperandList = (ins type1:$src);
100
100
let hasSideEffects = false;
101
101
}
102
102
103
- // Truncate the unsigned saturated operand to an unsigned result with saturation.
103
+ // Truncate the unsigned operand to an unsigned result with saturation.
104
104
def G_TRUNC_USAT_U : GenericInstruction {
105
105
let OutOperandList = (outs type0:$dst);
106
106
let InOperandList = (ins type1:$src);
You can’t perform that action at this time.
0 commit comments