aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-06-15 11:54:19 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-06-15 11:54:19 -0400
commited78a6054c628e80240eff8ea9a06412774df094 (patch)
treef50359e5f77b2c259984c9066c1849b59a89adfe /Makefile
parent6991c3986b7f43ad7f0448831c2da7fef9c2aa96 (diff)
some error reporting
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c7761c0..caa1558 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ main: $(subst .cpp,.o,$(CXXFILES))
$(CXX) -o $@ $^ $(CXXFLAGS) $(LDFLAGS)
prog: main test.fp
- ./main < test.fp 2> forsp.ir
+ ./main < test.fp > forsp.ir
llc -march=x86 -filetype=obj --relocation-model=pic forsp.ir -O1
clang -c support.c -m32 -Os
clang support.o forsp.ir.o -m32 -Os