mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
fix typo: "\t" => " "
Reviewers: llvm.org, Jim Reviewed By: Jim Subscribers: arsenm, jvesely, nhaehnle, rupprecht, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D59983 llvm-svn: 357365
This commit is contained in:
parent
1dbd089577
commit
773c0f6e6e
@ -1241,7 +1241,7 @@ void AMDGPUInstPrinter::printEndpgm(const MCInst *MI, unsigned OpNo,
|
|||||||
#include "AMDGPUGenAsmWriter.inc"
|
#include "AMDGPUGenAsmWriter.inc"
|
||||||
|
|
||||||
void R600InstPrinter::printInst(const MCInst *MI, raw_ostream &O,
|
void R600InstPrinter::printInst(const MCInst *MI, raw_ostream &O,
|
||||||
StringRef Annot, const MCSubtargetInfo &STI) {
|
StringRef Annot, const MCSubtargetInfo &STI) {
|
||||||
O.flush();
|
O.flush();
|
||||||
printInstruction(MI, O);
|
printInstruction(MI, O);
|
||||||
printAnnotation(O, Annot);
|
printAnnotation(O, Annot);
|
||||||
|
@ -419,7 +419,7 @@ void X86InterleavedAccessGroup::interleave8bitStride4(
|
|||||||
}
|
}
|
||||||
|
|
||||||
reorderSubVector(VT, TransposedMatrix, VecOut, makeArrayRef(Concat, 16),
|
reorderSubVector(VT, TransposedMatrix, VecOut, makeArrayRef(Concat, 16),
|
||||||
NumOfElm, 4, Builder);
|
NumOfElm, 4, Builder);
|
||||||
}
|
}
|
||||||
|
|
||||||
// createShuffleStride returns shuffle mask of size N.
|
// createShuffleStride returns shuffle mask of size N.
|
||||||
|
@ -274,8 +274,8 @@ public:
|
|||||||
StringRef &SectionName,
|
StringRef &SectionName,
|
||||||
unsigned &SectionIndex) const;
|
unsigned &SectionIndex) const;
|
||||||
std::string getStaticSymbolName(uint32_t Index) const;
|
std::string getStaticSymbolName(uint32_t Index) const;
|
||||||
StringRef getSymbolVersionByIndex(StringRef StrTab,
|
StringRef getSymbolVersionByIndex(StringRef StrTab,
|
||||||
uint32_t VersionSymbolIndex,
|
uint32_t VersionSymbolIndex,
|
||||||
bool &IsDefault) const;
|
bool &IsDefault) const;
|
||||||
|
|
||||||
void printSymbolsHelper(bool IsDynamic) const;
|
void printSymbolsHelper(bool IsDynamic) const;
|
||||||
|
@ -109,7 +109,7 @@ RecognizableInstr::RecognizableInstr(DisassemblerTables &tables,
|
|||||||
std::vector<Record*> Predicates = Rec->getValueAsListOfDefs("Predicates");
|
std::vector<Record*> Predicates = Rec->getValueAsListOfDefs("Predicates");
|
||||||
for (unsigned i = 0, e = Predicates.size(); i != e; ++i) {
|
for (unsigned i = 0, e = Predicates.size(); i != e; ++i) {
|
||||||
if (Predicates[i]->getName().find("Not64Bit") != Name.npos ||
|
if (Predicates[i]->getName().find("Not64Bit") != Name.npos ||
|
||||||
Predicates[i]->getName().find("In32Bit") != Name.npos) {
|
Predicates[i]->getName().find("In32Bit") != Name.npos) {
|
||||||
Is32Bit = true;
|
Is32Bit = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user