Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ are very welcome.
## Quick Start

```bash
git clone https://github.com/kinsomwang/ScratchV
git clone https://github.com/ScratchV-Compiler/ScratchV
cd ScratchV
pip install -e . # install in editable mode
pip install tinyfive # optional: assembly verification
Expand Down
2 changes: 1 addition & 1 deletion scratchv/standalone/onnx_to_llvm_standalone.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def emit_i32_icmp(self, predicate: str, lhs: str, rhs: str) -> str:

def emit_i32_and(self, lhs: str, rhs: str) -> str:
r = self.fresh("iand")
self._p(f" {r} = and i1 {lhs}, {rhs}")
self._p(f" {r} = and i32 {lhs}, {rhs}")
return r

# -- control flow ------------------------------------------------------
Expand Down
Loading