Displaying 1 result from an estimated 1 matches for "4659ef9d".
2014 Sep 10
3
[LLVMdev] Does llvm-lit support type substitution (macro)?
Hello all,
I am writing test cases which are dedicated to be executed by llvm-lit.
Most of my test cases have the same logic but different types. For example:
// RUN: %clang_cc1 -fsyntax-only
func (int a) {
a = 3;
}
// RUN: %clang_cc1 -fsyntax-only
func (char a) {
a = 3;
}
// RUN: %clang_cc1 -fsyntax-only
func (unsigned a) {
a = 3;
}
Now I put them in three different test cases but it