Took existing code from loop-convert tool and made it into a cpp11-migrate transform. Pattern now set for having transform code in subdirectories. Related changes: - Makefile and CMakeLists.txt updated to support source files in subdirectories. - At least one transform must be specified. syntax-only tests removed to reflect this. - TODO: port over loop-convert tests. Reviewers: klimek, silvas llvm-svn: 171481
9 lines
156 B
C++
9 lines
156 B
C++
// RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp
|
|
// RUN: cpp11-migrate %t.cpp --
|
|
// XFAIL: *
|
|
// REQUIRES: shell
|
|
|
|
int main(int argc, char** argv) {
|
|
return 0;
|
|
}
|