[analyzer] Fix a crash until we can handle temporary struct objects properly.
[clang.git] / utils / VtableTest / Makefile
blobdd615aef6a921ff3120f206bd329a398e1a92fa3
1 GXX := llvm-g++-4.2
2 CLANGXX := clang++
4 all: one
6 test.cc: gen.cc
7 g++ gen.cc -o gen
8 ./gen >test.cc
10 test-gcc.sum: test.cc
11 time $(GXX) test.cc -o test-gcc.s -S
12 $(GXX) test-gcc.s -o test-gcc
13 ./test-gcc >test-gcc.sum
15 test-clang.sum: test.cc
16 time $(CLANGXX) test.cc -o test-clang.s -S
17 $(CLANGXX) test-clang.s -o test-clang
18 ./test-clang >test-clang.sum
20 one: test-gcc.sum test-clang.sum
21 cmp test-gcc.sum test-clang.sum
23 clean:
24 rm -f gen test-gcc test-clang test.cc test-gcc.sum test-clang.sum test-gcc.s test-clang.s