clang-1/Rewrite
Chris Lattner 57c337d9ab haha, my devious plot is complete:
$ clang rewrite.c -rewrite-test
prints:

int foo() {
        b:      foo();
f:      foo();
    foo();
}

for:

int foo() {
	b:	foo();
f:	foo();
    foo();
}

amazing.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42944 91177308-0d34-0410-b5e6-96231b3b80d8
2007-10-13 00:46:29 +00:00
..
Makefile Initial checkin of rewriter interface. It is just stubbed out for now. 2007-09-15 22:21:22 +00:00
Rewriter.cpp haha, my devious plot is complete: 2007-10-13 00:46:29 +00:00