Daniel Dunbar | 8e019fd | 2008-08-21 02:51:29 +0000 | [diff] [blame] | 1 | // RUN: clang -emit-llvm %s -o %t |
Seo Sanghyeon | fcd4477 | 2007-12-03 06:23:43 +0000 | [diff] [blame] | 2 | |
3 | typedef int Int; | ||||
4 | |||||
5 | int test1(int *a, Int *b) { return a - b; } | ||||
Seo Sanghyeon | a570d31 | 2007-12-26 05:21:37 +0000 | [diff] [blame] | 6 | |
7 | int test2(const char *a, char *b) { return b - a; } |