Skip to content

Minor fixes #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 30, 2013
Merged
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 py/asmx64.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define REG_RSI (6)
#define REG_RDI (7)

// condition codes, used for jcc and setcc (desipite their j-name!)
// condition codes, used for jcc and setcc (despite their j-name!)
#define JCC_JB (0x2) // below, unsigned
#define JCC_JZ (0x4)
#define JCC_JE (0x4)
Expand Down
2 changes: 1 addition & 1 deletion stm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,6 @@ $(BUILD)/compile.o: $(PYSRC)/grammar.h
$(BUILD)/emitbc.o: $(PYSRC)/emit.h

clean:
/bin/rm -r $(BUILD)
/bin/rm -rf $(BUILD)

.PHONY: all clean
2 changes: 1 addition & 1 deletion unix-cpy/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,6 @@ $(BUILD)/emitcpy.o: $(PYSRC)/emit.h
$(BUILD)/emitbc.o: $(PYSRC)/emit.h

clean:
/bin/rm -r $(BUILD)
/bin/rm -rf $(BUILD)

.PHONY: clean
2 changes: 1 addition & 1 deletion unix/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ $(BUILD)/emitcpy.o: $(PYSRC)/emit.h
$(BUILD)/emitbc.o: $(PYSRC)/emit.h

clean:
/bin/rm -r $(BUILD)
/bin/rm -rf $(BUILD)

.PHONY: clean