diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-03-06 21:59:38 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-03-06 21:59:38 +0000 |
commit | 131daca01d7183860b405cff5af16a52a7929c35 (patch) | |
tree | ae2bc7ecfefe7c2c5abbf1cdb6420b43840d1ba1 | |
parent | be19ae05e7dedc052d3b8314e74d6810f1ec7197 (diff) | |
download | bcm5719-llvm-131daca01d7183860b405cff5af16a52a7929c35.tar.gz bcm5719-llvm-131daca01d7183860b405cff5af16a52a7929c35.zip |
Remove a dead store, add a FIXME for another.
llvm-svn: 203169
-rw-r--r-- | clang/lib/Lex/ModuleMap.cpp | 1 | ||||
-rw-r--r-- | clang/tools/c-index-test/c-index-test.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Lex/ModuleMap.cpp b/clang/lib/Lex/ModuleMap.cpp index 86ffa5288a0..14bc3baba6e 100644 --- a/clang/lib/Lex/ModuleMap.cpp +++ b/clang/lib/Lex/ModuleMap.cpp @@ -1996,6 +1996,7 @@ void ModuleMapParser::parseInferredModuleDecl(bool Framework, bool Explicit) { // We'll be inferring framework modules for this directory. Map.InferredDirectories[Directory].InferModules = true; Map.InferredDirectories[Directory].InferSystemModules = Attrs.IsSystem; + // FIXME: Handle the 'framework' keyword. } // Parse the opening brace. diff --git a/clang/tools/c-index-test/c-index-test.c b/clang/tools/c-index-test/c-index-test.c index 22c0d976234..f6b5510292b 100644 --- a/clang/tools/c-index-test/c-index-test.c +++ b/clang/tools/c-index-test/c-index-test.c @@ -1329,7 +1329,7 @@ static enum CXChildVisitResult PrintTypeSize(CXCursor cursor, CXCursor p, CXCursor Parent, Root; if (clang_getCursorKind(cursor) == CXCursor_FieldDecl ) { const char *RootParentName; - Root = Parent = p; + Parent = p; do { Root = Parent; RootParentName = clang_getCString(clang_getCursorSpelling(Root)); |