Skip to content

Commit

Permalink
Enable actions for main branch
Browse files Browse the repository at this point in the history
Signed-off-by: HyukWoo Park <[email protected]>
  • Loading branch information
clover2123 committed Oct 31, 2023
1 parent 91093ae commit 2143604
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Actions

on:
push:
branches: [ interp ]
branches: [ main ]
pull_request:
branches: [ interp ]
branches: [ main ]

env:
RUNNER: tools/run-tests.py
Expand Down
5 changes: 5 additions & 0 deletions src/jit/ByteCodeParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@

#include <map>

#if defined(COMPILER_MSVC)
#include <BaseTsd.h>
typedef SSIZE_T ssize_t;
#endif

namespace Walrus {

#define COMPUTE_OFFSET(idx, offset) \
Expand Down
2 changes: 1 addition & 1 deletion src/jit/SimdX86Inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ static void simdEmitINeg(sljit_compiler* compiler, uint32_t signOpcode, uint32_t
return;
}

ASSERT(subOpcode = SimdOp::psubq);
ASSERT(subOpcode == SimdOp::psubq);

if (sljit_has_cpu_feature(SLJIT_HAS_AVX)) {
simdEmitSSEOp(compiler, SimdOp::pxor, tmp, tmp);
Expand Down

0 comments on commit 2143604

Please sign in to comment.