Reid Kleckner <[email protected]> writes: > Author: rnk > Date: Fri Dec 12 13:13:04 2014 > New Revision: 224145 > > URL: http://llvm.org/viewvc/llvm-project?rev=224145&view=rev > Log: > Allow module deps to be printed in an arbitrary order > > The order is different between Windows and Unix for reasons unknown, but > the compiler output appears to still be determinstic.
I don't think this is right. It looks to me like r224055 changed ModuleDependencyListener's semantics unintentionally. I'll look into it. > Modified: > cfe/trunk/test/Modules/dependency-dump.m > > Modified: cfe/trunk/test/Modules/dependency-dump.m > URL: > http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/dependency-dump.m?rev=224145&r1=224144&r2=224145&view=diff > ============================================================================== > --- cfe/trunk/test/Modules/dependency-dump.m (original) > +++ cfe/trunk/test/Modules/dependency-dump.m Fri Dec 12 13:13:04 2014 > @@ -6,10 +6,10 @@ > // expected-no-diagnostics > > // RUN: FileCheck %s -check-prefix=VFS -input-file %t/vfs/vfs.yaml > -// VFS: 'name': "SubFramework.h" > -// VFS: 'name': "Treasure.h" > -// VFS: 'name': "Module.h" > -// VFS: 'name': "Sub.h" > -// VFS: 'name': "Sub2.h" > +// VFS-DAG: 'name': "SubFramework.h" > +// VFS-DAG: 'name': "Treasure.h" > +// VFS-DAG: 'name': "Module.h" > +// VFS-DAG: 'name': "Sub.h" > +// VFS-DAG: 'name': "Sub2.h" > > @import Module; > > > _______________________________________________ > cfe-commits mailing list > [email protected] > http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
