From 5368173f12b6abe4f45d1d48aa45a50c98fd35fc Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 30 Jan 2013 00:34:26 +0000 Subject: [Frontend] Remove HeaderSearchOptions::Entry::IsInternal, which is unused. llvm-svn: 173866 --- clang/lib/Frontend/CompilerInvocation.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'clang/lib/Frontend/CompilerInvocation.cpp') diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 49f89d4..f49f30d 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -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. -- cgit v1.1