Add support for building a module from a module map to the -cc1
interface. This is currently limited to modules with umbrella
headers.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@144736 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Modules/normal-module-map.cpp b/test/Modules/normal-module-map.cpp
index 4dfa9c9..73cfe8b 100644
--- a/test/Modules/normal-module-map.cpp
+++ b/test/Modules/normal-module-map.cpp
@@ -1,8 +1,6 @@
 // RUN: rm -rf %t
 // RUN: %clang_cc1 -x objective-c -fmodule-cache-path %t -fauto-module-import -I %S/Inputs/normal-module-map %s -verify
 
-// FIXME: The expected error here is temporary, since we don't yet have the
-// logic to build a module from a module map.
 #include "Umbrella/Umbrella.h"
 
 int getUmbrella() { 
@@ -11,6 +9,8 @@
 
 __import_module__ Umbrella2;
 
+// FIXME: The expected error here is temporary, since we don't yet have the
+// logic to build a module from a module map.
 #include "a1.h" // expected-error{{module 'libA' not found}}
 #include "b1.h"
 #include "nested/nested2.h"