scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 874fa3ca5a3eba2a0849661312f85de17eeea5df
parent ebdceee280c3dce288f83b845764e4c2807dd4f1
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 27 May 2016 08:07:46 +0200

[cc2] Add missed optm.c file

This file was missed in the repository and it was impsossible
to compile cc2.

Diffstat:
Acc2/optm.c | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git a/cc2/optm.c b/cc2/optm.c @@ -0,0 +1,10 @@ + +#include "arch.h" +#include "cc2.h" + +Node * +optm_ind(Node *np) +{ + return np; +} +