From 58c9d5f982cc4b3e6925d0964cd99d019a757c2c Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Wed, 13 Nov 2019 13:51:32 -0800 Subject: [PATCH] Fix another typo in compiler series --- content/blog/08_compiler_llvm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/08_compiler_llvm.md b/content/blog/08_compiler_llvm.md index c71d94e..0fd6587 100644 --- a/content/blog/08_compiler_llvm.md +++ b/content/blog/08_compiler_llvm.md @@ -514,7 +514,7 @@ We run the following commands in our build directory: ``` ./compiler < ../examples/work1.txt -gcc -no-pie ../runtime.c progrma.o +gcc -no-pie ../runtime.c program.o ./a.out ```