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 ...
[Modules][ObjC] Warn on the use of '@import' in framework headersUsing @import in framework headers inhibit the use of such headerswhen not using modules, this is specially bad for headers that en
[Modules][ObjC] Warn on the use of '@import' in framework headersUsing @import in framework headers inhibit the use of such headerswhen not using modules, this is specially bad for headers that endup in the SDK (or any other system framework). Add a warning to giveusers some indication that this is discouraged.rdar://problem/39192894llvm-svn: 335780