mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 00:17:01 +00:00
Remove unnecessary llvm:: qualification.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202316 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -39,7 +39,7 @@ inline bool operator<(UnicodeCharRange Range, uint32_t Value) {
|
||||
/// array.
|
||||
class UnicodeCharSet {
|
||||
public:
|
||||
typedef llvm::ArrayRef<UnicodeCharRange> CharRanges;
|
||||
typedef ArrayRef<UnicodeCharRange> CharRanges;
|
||||
|
||||
/// \brief Constructs a UnicodeCharSet instance from an array of
|
||||
/// UnicodeCharRanges.
|
||||
@@ -66,17 +66,17 @@ private:
|
||||
for (CharRanges::const_iterator I = Ranges.begin(), E = Ranges.end();
|
||||
I != E; ++I) {
|
||||
if (I != Ranges.begin() && Prev >= I->Lower) {
|
||||
DEBUG(llvm::dbgs() << "Upper bound 0x");
|
||||
DEBUG(llvm::dbgs().write_hex(Prev));
|
||||
DEBUG(llvm::dbgs() << " should be less than succeeding lower bound 0x");
|
||||
DEBUG(llvm::dbgs().write_hex(I->Lower) << "\n");
|
||||
DEBUG(dbgs() << "Upper bound 0x");
|
||||
DEBUG(dbgs().write_hex(Prev));
|
||||
DEBUG(dbgs() << " should be less than succeeding lower bound 0x");
|
||||
DEBUG(dbgs().write_hex(I->Lower) << "\n");
|
||||
return false;
|
||||
}
|
||||
if (I->Upper < I->Lower) {
|
||||
DEBUG(llvm::dbgs() << "Upper bound 0x");
|
||||
DEBUG(llvm::dbgs().write_hex(I->Lower));
|
||||
DEBUG(llvm::dbgs() << " should not be less than lower bound 0x");
|
||||
DEBUG(llvm::dbgs().write_hex(I->Upper) << "\n");
|
||||
DEBUG(dbgs() << "Upper bound 0x");
|
||||
DEBUG(dbgs().write_hex(I->Lower));
|
||||
DEBUG(dbgs() << " should not be less than lower bound 0x");
|
||||
DEBUG(dbgs().write_hex(I->Upper) << "\n");
|
||||
return false;
|
||||
}
|
||||
Prev = I->Upper;
|
||||
|
||||
Reference in New Issue
Block a user