Author: dgregor
Date: Mon Jan 30 16:22:39 2012
New Revision: 149283

URL: http://llvm.org/viewvc/llvm-project?rev=149283&view=rev
Log:
Remove tgmath.h from the module map for now, because it currently causes a
cyclic module dependency due to its inclusion of math.h and
complex.h. I'll take another shot at it later.

Modified:
    cfe/trunk/lib/Headers/module.map
    cfe/trunk/test/Modules/compiler_builtins.m

Modified: cfe/trunk/lib/Headers/module.map
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Headers/module.map?rev=149283&r1=149282&r2=149283&view=diff
==============================================================================
--- cfe/trunk/lib/Headers/module.map (original)
+++ cfe/trunk/lib/Headers/module.map Mon Jan 30 16:22:39 2012
@@ -36,10 +36,6 @@
     header "stdint.h"
   }
 
-  explicit module tgmath {
-    header "tgmath.h"
-  }
-
   explicit module intel {
     requires x86
 
@@ -136,6 +132,7 @@
   }
 
   // FIXME: mm_malloc.h
+  // FIXME: tgmath.h
   // FIXME: unwind.h
 
   explicit module varargs {

Modified: cfe/trunk/test/Modules/compiler_builtins.m
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/compiler_builtins.m?rev=149283&r1=149282&r2=149283&view=diff
==============================================================================
--- cfe/trunk/test/Modules/compiler_builtins.m (original)
+++ cfe/trunk/test/Modules/compiler_builtins.m Mon Jan 30 16:22:39 2012
@@ -1,9 +1,6 @@
 // RUN: rm -rf %t
 // RUN: %clang -fsyntax-only -fmodules -fmodule-cache-path %t %s -Xclang 
-verify
 
-// Note: disable test on MSVC, which doesn't have <complex.h>.
-// REQUIRES: shell
-
 @import __compiler_builtins.float_constants;
 
 float getFltMax() { return FLT_MAX; }


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to