aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerek Schuff <dschuff@chromium.org>2013-02-05 09:15:22 -0800
committerDerek Schuff <dschuff@chromium.org>2013-02-05 09:15:22 -0800
commit50bcd382991b721082fc0bfa6efa62488f23601a (patch)
tree0493e2acdad83b65db9148d69612f9a3ac336cc5
parentdbbbf3eb9d821f4ad3caab162ab70627fb32e10c (diff)
Remove getBundleSize methods from NaCl Asm backends
-rw-r--r--lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp2
-rw-r--r--lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp4
-rw-r--r--lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp4
3 files changed, 0 insertions, 10 deletions
diff --git a/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp b/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
index fe1dd3bd7a..2d8abc5da2 100644
--- a/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
+++ b/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
@@ -644,8 +644,6 @@ public:
NaClARMAsmBackend(const Target &T, const StringRef TT, uint8_t _OSABI)
: ELFARMAsmBackend(T, TT, _OSABI) { }
- unsigned getBundleSize() const { return 16; }
-
bool CustomExpandInst(const MCInst &Inst, MCStreamer &Out) const {
return CustomExpandInstNaClARM(Inst, Out);
}
diff --git a/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp b/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
index 8e97d527d7..50f0893fce 100644
--- a/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
+++ b/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
@@ -257,10 +257,6 @@ public:
NaClMipsAsmBackend(const Target &T, bool _is64Bit)
: MipsAsmBackend(T, Triple::NaCl, /* IsLittle */ true, _is64Bit) {}
- unsigned getBundleSize() const {
- return 16;
- }
-
bool CustomExpandInst(const MCInst &Inst, MCStreamer &Out) const {
return CustomExpandInstNaClMips(Inst, Out);
}
diff --git a/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp b/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
index 1926d4de29..613edb00b5 100644
--- a/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
+++ b/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
@@ -376,8 +376,6 @@ public:
NaClX86_32AsmBackend(const Target &T, uint8_t OSABI, StringRef CPU)
: ELFX86_32AsmBackend(T, OSABI, CPU) {}
- unsigned getBundleSize() const { return 32; }
-
bool CustomExpandInst(const MCInst &Inst, MCStreamer &Out) const {
return CustomExpandInstNaClX86(Inst, Out);
}
@@ -388,8 +386,6 @@ public:
NaClX86_64AsmBackend(const Target &T, uint8_t OSABI, StringRef CPU)
: ELFX86_64AsmBackend(T, OSABI, CPU) {}
- unsigned getBundleSize() const { return 32; }
-
bool CustomExpandInst(const MCInst &Inst, MCStreamer &Out) const {
return CustomExpandInstNaClX86(Inst, Out);
}