Skip to content

Commit

Permalink
src: cpu: update Xbyak to 5.751
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Dubtsov authored and Fomenko, Evarist M committed Jan 31, 2019
1 parent 059b5fd commit 4f809d0
Show file tree
Hide file tree
Showing 4 changed files with 216 additions and 144 deletions.
2 changes: 1 addition & 1 deletion src/cpu/jit_generator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ class jit_generator : public Xbyak::CodeGenerator

// Disallow char-based labels completely
void L(const char *label) = delete;
void L(const Xbyak::Label& label) { Xbyak::CodeGenerator::L(label); }
void L(Xbyak::Label& label) { Xbyak::CodeGenerator::L(label); }

void uni_vpxor(const Xbyak::Xmm &x1, const Xbyak::Xmm &x2,
const Xbyak::Operand &op) {
Expand Down
Loading

0 comments on commit 4f809d0

Please sign in to comment.