summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOri Bernstein <ori@eigenstate.org>2014-10-30 13:27:35 -0400
committerOri Bernstein <ori@eigenstate.org>2014-10-30 13:27:35 -0400
commit28318bd41da29f6e406c55247414cdcf3d071a30 (patch)
tree604401364a8b0f42b427521900a63e25c47c0308
parent87d2d8e139a034216b32cc752d4245837a4cc0f7 (diff)
downloadmc-28318bd41da29f6e406c55247414cdcf3d071a30.tar.gz
Unrename 'opt' -> 'mi'
-rw-r--r--6/Makefile2
-rw-r--r--6/gen.c2
-rw-r--r--6/isel.c2
-rw-r--r--6/locs.c2
-rw-r--r--6/main.c2
-rw-r--r--6/ra.c2
-rw-r--r--6/simp.c2
-rw-r--r--6/typeinfo.c2
-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
diff --git a/6/Makefile b/6/Makefile
index 45ebef0..87b59c0 100644
--- a/6/Makefile
+++ b/6/Makefile
@@ -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
diff --git a/6/gen.c b/6/gen.c
index 02be816..fbe6e1c 100644
--- a/6/gen.c
+++ b/6/gen.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/6/isel.c b/6/isel.c
index 0f179f6..49aa8a2 100644
--- a/6/isel.c
+++ b/6/isel.c
@@ -12,7 +12,7 @@
#include <unistd.h>
#include "parse.h"
-#include "opt.h"
+#include "mi.h"
#include "asm.h"
#include "../config.h"
diff --git a/6/locs.c b/6/locs.c
index e4f99c0..788cc60 100644
--- a/6/locs.c
+++ b/6/locs.c
@@ -11,7 +11,7 @@
#include <unistd.h>
#include "parse.h"
-#include "opt.h"
+#include "mi.h"
#include "asm.h"
#include "../config.h"
diff --git a/6/main.c b/6/main.c
index 302d0e3..26ba1e6 100644
--- a/6/main.c
+++ b/6/main.c
@@ -13,7 +13,7 @@
#include <sys/wait.h>
#include "parse.h"
-#include "opt.h"
+#include "mi.h"
#include "asm.h"
#include "../config.h"
diff --git a/6/ra.c b/6/ra.c
index 729d215..3b16f97 100644
--- a/6/ra.c
+++ b/6/ra.c
@@ -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 */
diff --git a/6/simp.c b/6/simp.c
index 96208fa..ab650f9 100644
--- a/6/simp.c
+++ b/6/simp.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/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
diff --git a/opt/cfg.c b/mi/cfg.c
index 7c6da86..2a24dda 100644
--- a/opt/cfg.c
+++ b/mi/cfg.c
@@ -11,7 +11,7 @@
#include <unistd.h>
#include "parse.h"
-#include "opt.h"
+#include "mi.h"
static Bb *mkbb(Cfg *cfg)
diff --git a/opt/df.c b/mi/df.c
index 4e5d83a..bbe5cb6 100644
--- a/opt/df.c
+++ b/mi/df.c
@@ -11,7 +11,7 @@
#include <unistd.h>
#include "parse.h"
-#include "opt.h"
+#include "mi.h"
/*
static void nodeuse(Node *n, Bitset *bs)
diff --git a/opt/fold.c b/mi/fold.c
index 04621b5..6153ad5 100644
--- a/opt/fold.c
+++ b/mi/fold.c
@@ -11,7 +11,7 @@
#include <unistd.h>
#include "parse.h"
-#include "opt.h"
+#include "mi.h"
static int islit(Node *n, vlong *v)
{
diff --git a/opt/match.c b/mi/match.c
index 3459653..bdc4c02 100644
--- a/opt/match.c
+++ b/mi/match.c
@@ -11,7 +11,7 @@
#include <unistd.h>
#include "parse.h"
-#include "opt.h"
+#include "mi.h"
typedef struct Dtree Dtree;
struct Dtree {
diff --git a/opt/opt.h b/mi/mi.h
index 9d7408f..9d7408f 100644
--- a/opt/opt.h
+++ b/mi/mi.h
diff --git a/opt/mkfile b/mi/mkfile
index 31fdf80..31fdf80 100644
--- a/opt/mkfile
+++ b/mi/mkfile