diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2014-06-11 18:26:29 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2014-06-11 18:26:29 +0000 |
commit | 829cc2e7d924e4c5868774dbb2e5de465affefdf (patch) | |
tree | a02a84bea86094f8af0ecfb70996d1dff810a0d1 /llvm | |
parent | 845438204fe93a70813186eb3af08597f064b042 (diff) | |
download | bcm5719-llvm-829cc2e7d924e4c5868774dbb2e5de465affefdf.tar.gz bcm5719-llvm-829cc2e7d924e4c5868774dbb2e5de465affefdf.zip |
Fix assert comments in Instruction.cpp.
llvm-svn: 210684
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/IR/Instruction.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/IR/Instruction.cpp b/llvm/lib/IR/Instruction.cpp index 6becc1e43e1..abb4e455765 100644 --- a/llvm/lib/IR/Instruction.cpp +++ b/llvm/lib/IR/Instruction.cpp @@ -145,31 +145,31 @@ void Instruction::setFastMathFlags(FastMathFlags FMF) { /// Determine whether the unsafe-algebra flag is set. bool Instruction::hasUnsafeAlgebra() const { - assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); + assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); return cast<FPMathOperator>(this)->hasUnsafeAlgebra(); } /// Determine whether the no-NaNs flag is set. bool Instruction::hasNoNaNs() const { - assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); + assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); return cast<FPMathOperator>(this)->hasNoNaNs(); } /// Determine whether the no-infs flag is set. bool Instruction::hasNoInfs() const { - assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); + assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); return cast<FPMathOperator>(this)->hasNoInfs(); } /// Determine whether the no-signed-zeros flag is set. bool Instruction::hasNoSignedZeros() const { - assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); + assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); return cast<FPMathOperator>(this)->hasNoSignedZeros(); } /// Determine whether the allow-reciprocal flag is set. bool Instruction::hasAllowReciprocal() const { - assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); + assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); return cast<FPMathOperator>(this)->hasAllowReciprocal(); } @@ -177,7 +177,7 @@ bool Instruction::hasAllowReciprocal() const { /// operator which supports these flags. See LangRef.html for the meaning of /// these flats. FastMathFlags Instruction::getFastMathFlags() const { - assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); + assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); return cast<FPMathOperator>(this)->getFastMathFlags(); } |