2009-03-24 23:17:30 +03:00
|
|
|
// -emit-llvm, -flto, and -O4 all cause a switch to llvm-bc object
|
|
|
|
// files.
|
2009-12-16 01:01:24 +03:00
|
|
|
// RUN: %clang -ccc-print-phases -c %s -flto 2> %t.log
|
2009-11-08 04:45:36 +03:00
|
|
|
// RUN: grep '2: compiler, {1}, llvm-bc' %t.log
|
2009-12-16 01:01:24 +03:00
|
|
|
// RUN: %clang -ccc-print-phases -c %s -O4 2> %t.log
|
2009-11-08 04:45:36 +03:00
|
|
|
// RUN: grep '2: compiler, {1}, llvm-bc' %t.log
|
2009-03-24 23:17:30 +03:00
|
|
|
|
|
|
|
// and -emit-llvm doesn't alter pipeline (unfortunately?).
|
2009-12-16 01:01:24 +03:00
|
|
|
// RUN: %clang -ccc-print-phases %s -emit-llvm 2> %t.log
|
2009-11-08 04:45:36 +03:00
|
|
|
// RUN: grep '0: input, ".*lto.c", c' %t.log
|
|
|
|
// RUN: grep '1: preprocessor, {0}, cpp-output' %t.log
|
|
|
|
// RUN: grep '2: compiler, {1}, llvm-bc' %t.log
|
|
|
|
// RUN: grep '3: linker, {2}, image' %t.log
|
2009-03-24 23:17:30 +03:00
|
|
|
|
|
|
|
// llvm-bc and llvm-ll outputs need to match regular suffixes
|
|
|
|
// (unfortunately).
|
2009-12-16 01:01:24 +03:00
|
|
|
// RUN: %clang %s -emit-llvm -save-temps -### 2> %t.log
|
2009-11-08 04:45:36 +03:00
|
|
|
// RUN: grep '"-o" ".*lto\.i" "-x" "c" ".*lto\.c"' %t.log
|
|
|
|
// RUN: grep '"-o" ".*lto\.o" .*".*lto\.i"' %t.log
|
|
|
|
// RUN: grep '".*a.out" .*".*lto\.o"' %t.log
|
2009-03-24 23:17:30 +03:00
|
|
|
|
2009-12-16 01:01:24 +03:00
|
|
|
// RUN: %clang %s -emit-llvm -S -### 2> %t.log
|
2009-11-08 04:45:36 +03:00
|
|
|
// RUN: grep '"-o" ".*lto\.s" "-x" "c" ".*lto\.c"' %t.log
|
2009-03-24 23:17:30 +03:00
|
|
|
|