aboutsummaryrefslogtreecommitdiff
path: root/src/dolphin/x64ABI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/dolphin/x64ABI.cpp')
-rw-r--r--src/dolphin/x64ABI.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/dolphin/x64ABI.cpp b/src/dolphin/x64ABI.cpp
index d86a158..d85168a 100644
--- a/src/dolphin/x64ABI.cpp
+++ b/src/dolphin/x64ABI.cpp
@@ -6,8 +6,9 @@
#include "x64ABI.h"
#include "x64Emitter.h"
-using namespace Gen;
-
+namespace Gen
+{
+using namespace Common;
// Shared code between Win64 and Unix64
void XEmitter::ABI_CalculateFrameSize(BitSet32 mask, size_t rsp_alignment, size_t needed_frame_size,
@@ -117,3 +118,4 @@ void XEmitter::MOVTwo(int bits, Gen::X64Reg dst1, Gen::X64Reg src1, s32 offset1,
ADD(bits, R(dst1), Imm32(offset1));
}
}
+} \ No newline at end of file