summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMax <mparisi@stevens.edu>2021-01-22 14:02:16 -0500
committerMax <mparisi@stevens.edu>2021-01-22 14:02:16 -0500
commit892c994feed64d3b8ea86c2eeaa8083dca4c7474 (patch)
treea8ad553e2671f39a78407694839e63c401529b78 /Makefile
parent75330c36b17204a51668637e728c09e1a4e82a5d (diff)
fixed bug in #pragma regswap where swapping rA and rB would also swap fA and fB, and added #pragma iswap
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b897334..876487d 100644
--- a/Makefile
+++ b/Makefile
@@ -155,7 +155,7 @@ $(BUILD_DIR)/%.o: %.s
$(PYTHON) $(POSTPROC) $(PROCFLAGS) $@
$(BUILD_DIR)/%.o: %.cpp
- $(PYTHON) $(PRAGMAPROC) "$(CC)" "$(CFLAGS) -lang c++ -c" $@ $< -fix-regswaps
+ $(PYTHON) $(PRAGMAPROC) "$(CC)" "$(CFLAGS) -lang c++ -c" $@ $<
$(BUILD_DIR)/%.o: %.c
- $(PYTHON) $(PRAGMAPROC) "$(CC)" "$(CFLAGS) -lang c99 -c" $@ $< -fix-regswaps
+ $(PYTHON) $(PRAGMAPROC) "$(CC)" "$(CFLAGS) -lang c99 -c" $@ $<