diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-02-10 19:54:31 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-02-10 19:54:31 +0000 |
commit | bb7930c17e9831c3499bbbf1703cca408f0b83b7 (patch) | |
tree | 8412469afce189026118c98b620ab182e70eeb8a /clang/test/ASTMerge/Inputs/function2.c | |
parent | cc152d61596078d5682919189e424fea405708bc (diff) | |
download | bcm5719-llvm-bb7930c17e9831c3499bbbf1703cca408f0b83b7.tar.gz bcm5719-llvm-bb7930c17e9831c3499bbbf1703cca408f0b83b7.zip |
Implement basic support for merging function declarations across
translation units.
llvm-svn: 95794
Diffstat (limited to 'clang/test/ASTMerge/Inputs/function2.c')
-rw-r--r-- | clang/test/ASTMerge/Inputs/function2.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/ASTMerge/Inputs/function2.c b/clang/test/ASTMerge/Inputs/function2.c new file mode 100644 index 00000000000..ad81c073754 --- /dev/null +++ b/clang/test/ASTMerge/Inputs/function2.c @@ -0,0 +1,6 @@ +typedef int Int; +void f0(Int); +void f1(Int, double); +void f2(int, int); +void f3(int); +static void f4(float, float); |