Index: src/IceAssemblerARM32.h |
diff --git a/src/IceAssemblerARM32.h b/src/IceAssemblerARM32.h |
index d4c58af930eae4fb2af3369b20175fcecb5b405a..0b9c756b813bfb7d592f5942c41a25c244df4b39 100644 |
--- a/src/IceAssemblerARM32.h |
+++ b/src/IceAssemblerARM32.h |
@@ -45,13 +45,12 @@ using IValueT = uint32_t; |
using IOffsetT = int32_t; |
class AssemblerARM32 : public Assembler { |
- AssemblerARM32() = delete; |
AssemblerARM32(const AssemblerARM32 &) = delete; |
AssemblerARM32 &operator=(const AssemblerARM32 &) = delete; |
public: |
- explicit AssemblerARM32(GlobalContext *Ctx, bool use_far_branches = false) |
- : Assembler(Asm_ARM32, Ctx) { |
+ explicit AssemblerARM32(bool use_far_branches = false) |
+ : Assembler(Asm_ARM32) { |
// TODO(kschimpf): Add mode if needed when branches are handled. |
(void)use_far_branches; |
} |