Fix "multi-line comment" compiler error.

llvm-svn: 138936
This commit is contained in:
Argyrios Kyrtzidis 2011-09-01 03:07:11 +00:00
parent 528499bb44
commit 019f3c2444
1 changed files with 8 additions and 8 deletions

View File

@ -1840,19 +1840,19 @@ namespace {
// warnings for them when the module was created. We only want to warn for
// duplicates between non-dependent modules:
//
// MT
// / \
// ML MR
// MT //
// / \ //
// ML MR //
//
// We want to warn for duplicates between ML and MR,not between ML and MT.
//
// FIXME: We should not warn for duplicates in diamond:
//
// MT
// / \
// ML MR
// \ /
// MB
// MT //
// / \ //
// ML MR //
// \ / //
// MB //
//
// If there are duplicates in ML/MR, there will be warning when creating
// MB *and* when importing MB. We should not warn when importing.