Daniel Dunbar | 2d6ca8d | 2008-08-21 02:51:29 +0000 | [diff] [blame] | 1 | // RUN: clang -emit-llvm %s -o %t |
Seo Sanghyeon | ec86b97 | 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 | 9bb947a | 2007-12-26 05:21:37 +0000 | [diff] [blame] | 6 | |
7 | int test2(const char *a, char *b) { return b - a; } |