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 ...
[HeaderSearch] loadSubdirectoryModuleMaps should respect -working-directoryInclude search paths can be relative paths. The loadSubdirectoryModuleMaps functionshould account for that and respect th
[HeaderSearch] loadSubdirectoryModuleMaps should respect -working-directoryInclude search paths can be relative paths. The loadSubdirectoryModuleMaps functionshould account for that and respect the -working-directory parameter given to Clang.rdar://46045849Differential Revision: https://reviews.llvm.org/D54503 llvm-svn: 346822