diff options
author | Ori Bernstein <ori@eigenstate.org> | 2014-10-30 13:27:35 -0400 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2014-10-30 13:27:35 -0400 |
commit | 28318bd41da29f6e406c55247414cdcf3d071a30 (patch) | |
tree | 604401364a8b0f42b427521900a63e25c47c0308 | |
parent | 87d2d8e139a034216b32cc752d4245837a4cc0f7 (diff) | |
download | mc-28318bd41da29f6e406c55247414cdcf3d071a30.tar.gz |
Unrename 'opt' -> 'mi'
-rw-r--r-- | 6/Makefile | 2 | ||||
-rw-r--r-- | 6/gen.c | 2 | ||||
-rw-r--r-- | 6/isel.c | 2 | ||||
-rw-r--r-- | 6/locs.c | 2 | ||||
-rw-r--r-- | 6/main.c | 2 | ||||
-rw-r--r-- | 6/ra.c | 2 | ||||
-rw-r--r-- | 6/simp.c | 2 | ||||
-rw-r--r-- | 6/typeinfo.c | 2 | ||||
-rw-r--r-- | mi/Makefile (renamed from opt/Makefile) | 0 | ||||
-rw-r--r-- | mi/cfg.c (renamed from opt/cfg.c) | 2 | ||||
-rw-r--r-- | mi/df.c (renamed from opt/df.c) | 2 | ||||
-rw-r--r-- | mi/fold.c (renamed from opt/fold.c) | 2 | ||||
-rw-r--r-- | mi/match.c (renamed from opt/match.c) | 2 | ||||
-rw-r--r-- | mi/mi.h (renamed from opt/opt.h) | 0 | ||||
-rw-r--r-- | mi/mkfile (renamed from opt/mkfile) | 0 |
15 files changed, 12 insertions, 12 deletions
@@ -8,7 +8,7 @@ OBJ= \ simp.o \ typeinfo.o \ -DEPS=../parse/libparse.a ../opt/libmi.a +DEPS=../parse/libparse.a ../mi/libmi.a include ../config.mk include ../mk/c.mk @@ -10,7 +10,7 @@ #include <unistd.h> #include "parse.h" -#include "opt.h" +#include "mi.h" #include "asm.h" #include "../config.h" @@ -12,7 +12,7 @@ #include <unistd.h> #include "parse.h" -#include "opt.h" +#include "mi.h" #include "asm.h" #include "../config.h" @@ -11,7 +11,7 @@ #include <unistd.h> #include "parse.h" -#include "opt.h" +#include "mi.h" #include "asm.h" #include "../config.h" @@ -13,7 +13,7 @@ #include <sys/wait.h> #include "parse.h" -#include "opt.h" +#include "mi.h" #include "asm.h" #include "../config.h" @@ -7,7 +7,7 @@ #include <string.h> #include "parse.h" -#include "opt.h" +#include "mi.h" #include "asm.h" #define Sizetbits (CHAR_BIT*sizeof(size_t)) /* used in graph reprs */ @@ -10,7 +10,7 @@ #include <unistd.h> #include "parse.h" -#include "opt.h" +#include "mi.h" #include "asm.h" #include "../config.h" diff --git a/6/typeinfo.c b/6/typeinfo.c index 9cd206a..abe9fb9 100644 --- a/6/typeinfo.c +++ b/6/typeinfo.c @@ -10,7 +10,7 @@ #include <unistd.h> #include "parse.h" -#include "opt.h" +#include "mi.h" #include "asm.h" #include "../config.h" diff --git a/opt/Makefile b/mi/Makefile index f2ad256..f2ad256 100644 --- a/opt/Makefile +++ b/mi/Makefile @@ -11,7 +11,7 @@ #include <unistd.h> #include "parse.h" -#include "opt.h" +#include "mi.h" static Bb *mkbb(Cfg *cfg) @@ -11,7 +11,7 @@ #include <unistd.h> #include "parse.h" -#include "opt.h" +#include "mi.h" /* static void nodeuse(Node *n, Bitset *bs) @@ -11,7 +11,7 @@ #include <unistd.h> #include "parse.h" -#include "opt.h" +#include "mi.h" static int islit(Node *n, vlong *v) { @@ -11,7 +11,7 @@ #include <unistd.h> #include "parse.h" -#include "opt.h" +#include "mi.h" typedef struct Dtree Dtree; struct Dtree { |