r292435 - [Modules] Correct test comment from obsolete earlier version of code. NFC
Graydon Hoare via cfe-commits
cfe-commits at lists.llvm.org
Wed Jan 18 12:34:45 PST 2017
Author: graydon
Date: Wed Jan 18 14:34:44 2017
New Revision: 292435
URL: http://llvm.org/viewvc/llvm-project?rev=292435&view=rev
Log:
[Modules] Correct test comment from obsolete earlier version of code. NFC
Summary:
Code committed in rL290219 went through a few iterations; test wound up with
stale comment.
Reviewers: doug.gregor, manmanren
Reviewed By: manmanren
Subscribers: cfe-commits
Differential Revision: https://reviews.llvm.org/D28790
Modified:
cfe/trunk/test/Modules/implicit-private-with-different-name.m
Modified: cfe/trunk/test/Modules/implicit-private-with-different-name.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/implicit-private-with-different-name.m?rev=292435&r1=292434&r2=292435&view=diff
==============================================================================
--- cfe/trunk/test/Modules/implicit-private-with-different-name.m (original)
+++ cfe/trunk/test/Modules/implicit-private-with-different-name.m Wed Jan 18 14:34:44 2017
@@ -3,7 +3,7 @@
// Build PCH using A, with adjacent private module APrivate, which winds up being implicitly referenced
// RUN: %clang_cc1 -verify -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F %S/Inputs/implicit-private-with-different-name -emit-pch -o %t-A.pch %s
-// Use the PCH with no explicit way to resolve PrivateA, still pick it up through MODULE_DIRECTORY reference in PCH control block
+// Use the PCH with no explicit way to resolve APrivate, still pick it up by automatic second-chance search for "A" with "Private" appended
// RUN: %clang_cc1 -verify -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F %S/Inputs/implicit-private-with-different-name -include-pch %t-A.pch %s -fsyntax-only
// Check the fixit
More information about the cfe-commits
mailing list