mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-30 20:24:32 +00:00
Removing a switch statement that only contains a default; NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238552 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -219,12 +219,9 @@ public:
|
|||||||
};
|
};
|
||||||
PrettyPrinter PrettyPrinterInst;
|
PrettyPrinter PrettyPrinterInst;
|
||||||
PrettyPrinter &selectPrettyPrinter(Triple const &Triple, MCInstPrinter &IP) {
|
PrettyPrinter &selectPrettyPrinter(Triple const &Triple, MCInstPrinter &IP) {
|
||||||
switch(Triple.getArch()) {
|
|
||||||
default:
|
|
||||||
return PrettyPrinterInst;
|
return PrettyPrinterInst;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) {
|
static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) {
|
||||||
const Target *TheTarget = getTarget(Obj);
|
const Target *TheTarget = getTarget(Obj);
|
||||||
|
Reference in New Issue
Block a user