Commit ec332142 authored by Ivica Bogosavljevic's avatar Ivica Bogosavljevic Committed by Commit Bot

MIPS: Fix unittests compilation error due to missing class exports

Fix `d324382e`

Change-Id: I00d15869ab6ee150f458ecbc1688308ebd5a5819
Reviewed-on: https://chromium-review.googlesource.com/1150151Reviewed-by: 's avatarClemens Hammacher <clemensh@chromium.org>
Commit-Queue: Ivica Bogosavljevic <ivica.bogosavljevic@mips.com>
Cr-Commit-Position: refs/heads/master@{#54698}
parent 69b8c154
...@@ -475,8 +475,7 @@ class MemOperand : public Operand { ...@@ -475,8 +475,7 @@ class MemOperand : public Operand {
friend class Assembler; friend class Assembler;
}; };
class V8_EXPORT_PRIVATE Assembler : public AssemblerBase {
class Assembler : public AssemblerBase {
public: public:
// Create an assembler. Instructions and relocation information are emitted // Create an assembler. Instructions and relocation information are emitted
// into a buffer, with the instructions starting from the beginning and the // into a buffer, with the instructions starting from the beginning and the
......
...@@ -131,7 +131,7 @@ inline MemOperand CFunctionArgumentOperand(int index) { ...@@ -131,7 +131,7 @@ inline MemOperand CFunctionArgumentOperand(int index) {
return MemOperand(sp, offset); return MemOperand(sp, offset);
} }
class TurboAssembler : public TurboAssemblerBase { class V8_EXPORT_PRIVATE TurboAssembler : public TurboAssemblerBase {
public: public:
TurboAssembler(Isolate* isolate, const AssemblerOptions& options, TurboAssembler(Isolate* isolate, const AssemblerOptions& options,
void* buffer, int buffer_size, void* buffer, int buffer_size,
......
...@@ -482,8 +482,7 @@ class MemOperand : public Operand { ...@@ -482,8 +482,7 @@ class MemOperand : public Operand {
friend class Assembler; friend class Assembler;
}; };
class V8_EXPORT_PRIVATE Assembler : public AssemblerBase {
class Assembler : public AssemblerBase {
public: public:
// Create an assembler. Instructions and relocation information are emitted // Create an assembler. Instructions and relocation information are emitted
// into a buffer, with the instructions starting from the beginning and the // into a buffer, with the instructions starting from the beginning and the
......
...@@ -148,7 +148,7 @@ inline MemOperand CFunctionArgumentOperand(int index) { ...@@ -148,7 +148,7 @@ inline MemOperand CFunctionArgumentOperand(int index) {
return MemOperand(sp, offset); return MemOperand(sp, offset);
} }
class TurboAssembler : public TurboAssemblerBase { class V8_EXPORT_PRIVATE TurboAssembler : public TurboAssemblerBase {
public: public:
TurboAssembler(Isolate* isolate, const AssemblerOptions& options, TurboAssembler(Isolate* isolate, const AssemblerOptions& options,
void* buffer, int buffer_size, void* buffer, int buffer_size,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment