mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-30 13:46:09 +00:00

directory. - Removed .ll from the svn:ignore lists to try and prevent this. - Added svn:ignore on test/Misc/Output llvm-svn: 55104
8 lines
150 B
C
8 lines
150 B
C
// RUN: clang -emit-llvm %s -o %t
|
|
|
|
typedef int Int;
|
|
|
|
int test1(int *a, Int *b) { return a - b; }
|
|
|
|
int test2(const char *a, char *b) { return b - a; }
|