Skip to content

Commit b821993

Browse files
committed
edit comments
1 parent dad5270 commit b821993

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/include/llvm/Target/GenericOpcodes.td

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,21 +86,21 @@ def G_TRUNC : GenericInstruction {
8686
let hasSideEffects = false;
8787
}
8888

89-
// Truncate the signed saturated operand to a signed result with saturation.
89+
// Truncate the signed operand to a signed result with saturation.
9090
def G_TRUNC_SSAT_S : GenericInstruction {
9191
let OutOperandList = (outs type0:$dst);
9292
let InOperandList = (ins type1:$src);
9393
let hasSideEffects = false;
9494
}
9595

96-
// Truncate the signed saturated operand to an unsigned result with saturation.
96+
// Truncate the signed operand to an unsigned result with saturation.
9797
def G_TRUNC_SSAT_U : GenericInstruction {
9898
let OutOperandList = (outs type0:$dst);
9999
let InOperandList = (ins type1:$src);
100100
let hasSideEffects = false;
101101
}
102102

103-
// Truncate the unsigned saturated operand to an unsigned result with saturation.
103+
// Truncate the unsigned operand to an unsigned result with saturation.
104104
def G_TRUNC_USAT_U : GenericInstruction {
105105
let OutOperandList = (outs type0:$dst);
106106
let InOperandList = (ins type1:$src);

0 commit comments

Comments
 (0)