[llvm] r331615 - Fix comment. NFC
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Sun May 6 22:21:20 PDT 2018
Author: maskray
Date: Sun May 6 22:21:20 2018
New Revision: 331615
URL: http://llvm.org/viewvc/llvm-project?rev=331615&view=rev
Log:
Fix comment. NFC
Modified:
llvm/trunk/include/llvm/MC/MCInstrDesc.h
llvm/trunk/include/llvm/Support/SMLoc.h
Modified: llvm/trunk/include/llvm/MC/MCInstrDesc.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCInstrDesc.h?rev=331615&r1=331614&r2=331615&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCInstrDesc.h (original)
+++ llvm/trunk/include/llvm/MC/MCInstrDesc.h Sun May 6 22:21:20 2018
@@ -174,8 +174,8 @@ public:
// deprecated due to a "complex" reason, below.
int64_t DeprecatedFeature;
- // A complex method to determine if a certain is deprecated or not, and return
- // the reason for deprecation.
+ // A complex method to determine if a certain instruction is deprecated or
+ // not, and return the reason for deprecation.
bool (*ComplexDeprecationInfo)(MCInst &, const MCSubtargetInfo &,
std::string &);
Modified: llvm/trunk/include/llvm/Support/SMLoc.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/SMLoc.h?rev=331615&r1=331614&r2=331615&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/SMLoc.h (original)
+++ llvm/trunk/include/llvm/Support/SMLoc.h Sun May 6 22:21:20 2018
@@ -44,8 +44,8 @@ public:
/// Represents a range in source code.
///
/// SMRange is implemented using a half-open range, as is the convention in C++.
-/// In the string "abc", the range (1,3] represents the substring "bc", and the
-/// range (2,2] represents an empty range between the characters "b" and "c".
+/// In the string "abc", the range [1,3) represents the substring "bc", and the
+/// range [2,2) represents an empty range between the characters "b" and "c".
class SMRange {
public:
SMLoc Start, End;
@@ -54,7 +54,7 @@ public:
SMRange(NoneType) {}
SMRange(SMLoc St, SMLoc En) : Start(St), End(En) {
assert(Start.isValid() == End.isValid() &&
- "Start and end should either both be valid or both be invalid!");
+ "Start and End should either both be valid or both be invalid!");
}
bool isValid() const { return Start.isValid(); }
More information about the llvm-commits
mailing list