blob: 3133c9effe4eaef871b62be38c1a52d32755a596 [file] [log] [blame]
Daniel Dunbar2d6ca8d2008-08-21 02:51:29 +00001// RUN: clang -emit-llvm %s -o %t
Seo Sanghyeonec86b972007-12-03 06:23:43 +00002
3typedef int Int;
4
5int test1(int *a, Int *b) { return a - b; }
Seo Sanghyeon9bb947a2007-12-26 05:21:37 +00006
7int test2(const char *a, char *b) { return b - a; }