r200584 - Fix comment typo in test.

Richard Smith richard-llvm at metafoo.co.uk
Fri Jan 31 14:28:08 PST 2014


Author: rsmith
Date: Fri Jan 31 16:28:08 2014
New Revision: 200584

URL: http://llvm.org/viewvc/llvm-project?rev=200584&view=rev
Log:
Fix comment typo in test.

Modified:
    cfe/trunk/test/Modules/Inputs/submodules/import-self-b.h

Modified: cfe/trunk/test/Modules/Inputs/submodules/import-self-b.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/Inputs/submodules/import-self-b.h?rev=200584&r1=200583&r2=200584&view=diff
==============================================================================
--- cfe/trunk/test/Modules/Inputs/submodules/import-self-b.h (original)
+++ cfe/trunk/test/Modules/Inputs/submodules/import-self-b.h Fri Jan 31 16:28:08 2014
@@ -1,10 +1,12 @@
+// FIXME: This import has no effect, because the submodule isn't built yet, and
+// we don't map an @import to a #include in this case.
 @import import_self.c;
 #include "import-self-d.h"
 
 // FIXME: This should not work; names from 'a' should not be visible here.
 MyTypeA import_self_test_a;
 
-// FIXME: This should work but does not; names from 'b' are not actually visible here.
+// FIXME: This should work but does not; names from 'c' are not actually visible here.
 //MyTypeC import_self_test_c;
 
 MyTypeD import_self_test_d;





More information about the cfe-commits mailing list