[Frontend] Remove HeaderSearchOptions::Entry::IsInternal, which is unused.

llvm-svn: 173866
This commit is contained in:
Daniel Dunbar
2013-01-30 00:34:26 +00:00
parent 325e869463
commit 5368173f12
4 changed files with 7 additions and 19 deletions

View File

@@ -889,8 +889,7 @@ static void ParseHeaderSearchArgs(HeaderSearchOptions &Opts, ArgList &Args) {
frontend::IncludeDirGroup Group = frontend::System;
if ((*I)->getOption().matches(OPT_internal_externc_isystem))
Group = frontend::ExternCSystem;
Opts.AddPath((*I)->getValue(), Group, false, /*IgnoreSysRoot=*/true,
/*IsInternal=*/true);
Opts.AddPath((*I)->getValue(), Group, false, true);
}
// Add the path prefixes which are implicitly treated as being system headers.