1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

[AMDGPU] Fix few coding style issues. NFC.

llvm-svn: 272785
This commit is contained in:
Valery Pykhtin 2016-06-15 13:55:09 +00:00
parent 69b5eefb6d
commit 1563500bea
2 changed files with 23 additions and 23 deletions

View File

@ -30,7 +30,7 @@ static ArrayRef<StringRef> get_amd_kernel_code_t_FldNames() {
return makeArrayRef(Table);
}
static StringMap<int> createIndexMap(const ArrayRef<StringRef>& a) {
static StringMap<int> createIndexMap(const ArrayRef<StringRef> &a) {
StringMap<int> map;
for (auto Name : a)
map.insert(std::make_pair(Name, map.size()));
@ -67,8 +67,8 @@ static void printBitField(StringRef Name, const amd_kernel_code_t &c,
}
typedef void(*PrintFx)(StringRef,
const amd_kernel_code_t&,
raw_ostream&);
const amd_kernel_code_t &,
raw_ostream &);
static ArrayRef<PrintFx> getPrinterTable() {
static const PrintFx Table[] = {
@ -79,17 +79,17 @@ static ArrayRef<PrintFx> getPrinterTable() {
return makeArrayRef(Table);
}
void llvm::printAmdKernelCodeField(const amd_kernel_code_t& C,
void llvm::printAmdKernelCodeField(const amd_kernel_code_t &C,
int FldIndex,
raw_ostream& OS) {
raw_ostream &OS) {
auto Printer = getPrinterTable()[FldIndex];
if (Printer)
Printer(get_amd_kernel_code_t_FieldName(FldIndex), C, OS);
}
void llvm::dumpAmdKernelCode(const amd_kernel_code_t* C,
raw_ostream& OS,
const char* tab) {
void llvm::dumpAmdKernelCode(const amd_kernel_code_t *C,
raw_ostream &OS,
const char *tab) {
const int Size = getPrinterTable().size();
for (int i = 0; i < Size; ++i) {
OS << tab;
@ -101,7 +101,7 @@ void llvm::dumpAmdKernelCode(const amd_kernel_code_t* C,
// Field parsing
static bool expectEqualInt(MCAsmLexer& Lexer, raw_ostream& Err) {
static bool expectEqualInt(MCAsmLexer &Lexer, raw_ostream &Err) {
if (Lexer.isNot(AsmToken::Equal)) {
Err << "expected '='";
return false;
@ -134,9 +134,9 @@ static bool parseBitField(amd_kernel_code_t &C, MCAsmLexer &Lexer,
return true;
}
typedef bool(*ParseFx)(amd_kernel_code_t&,
MCAsmLexer& Lexer,
raw_ostream& Err);
typedef bool(*ParseFx)(amd_kernel_code_t &,
MCAsmLexer &Lexer,
raw_ostream &Err);
static ArrayRef<ParseFx> getParserTable() {
static const ParseFx Table[] = {
@ -148,9 +148,9 @@ static ArrayRef<ParseFx> getParserTable() {
}
bool llvm::parseAmdKernelCodeField(StringRef ID,
MCAsmLexer& Lexer,
amd_kernel_code_t& C,
raw_ostream& Err) {
MCAsmLexer &Lexer,
amd_kernel_code_t &C,
raw_ostream &Err) {
const int Idx = get_amd_kernel_code_t_FieldIndex(ID);
if (Idx < 0) {
Err << "unexpected amd_kernel_code_t field name " << ID;

View File

@ -20,18 +20,18 @@ class MCAsmLexer;
class raw_ostream;
class StringRef;
void printAmdKernelCodeField(const amd_kernel_code_t& C,
void printAmdKernelCodeField(const amd_kernel_code_t &C,
int FldIndex,
raw_ostream& OS);
raw_ostream &OS);
void dumpAmdKernelCode(const amd_kernel_code_t* C,
raw_ostream& OS,
const char* tab);
void dumpAmdKernelCode(const amd_kernel_code_t *C,
raw_ostream &OS,
const char *tab);
bool parseAmdKernelCodeField(StringRef ID,
MCAsmLexer& Lexer,
amd_kernel_code_t& C,
raw_ostream& Err);
MCAsmLexer &Lexer,
amd_kernel_code_t &C,
raw_ostream &Err);
}