Merge pull request #12 from pfalcon/minor-fixes

Minor fixes
This commit is contained in:
Damien George 2013-12-30 14:43:21 -08:00
commit 83c437cb0d
4 changed files with 4 additions and 4 deletions

View File

@ -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)

View File

@ -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

View File

@ -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

View File

@ -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