Use functions with prototypes when appropriate; NFCA significant number of our tests in C accidentally use functionswithout prototypes. This patch converts the function signatures to havea protot
Use functions with prototypes when appropriate; NFCA significant number of our tests in C accidentally use functionswithout prototypes. This patch converts the function signatures to havea prototype for the situations where the test is not specific to K&R Cdeclarations. e.g., void func();becomes void func(void);This is the seventh batch of tests being updated (there are asignificant number of other tests left to be updated).
show more ...
Fix auto-link for text-based dynamic library SDKs.When linking against text-based dynamic library SDKs the library name of aframework has now more than one possible filename extensions. This fix t
Fix auto-link for text-based dynamic library SDKs.When linking against text-based dynamic library SDKs the library name of aframework has now more than one possible filename extensions. This fix tests forboth possible extensions (none, and .tbd).This fixes rdar://problem/20609975llvm-svn: 253060