]> granicus.if.org Git - clang/commitdiff
Disabling this code due to regression on test/CodeGen/bitfield.c. See
authorEli Friedman <eli.friedman@gmail.com>
Tue, 2 Dec 2008 01:17:45 +0000 (01:17 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Tue, 2 Dec 2008 01:17:45 +0000 (01:17 +0000)
PR3152.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60389 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGExprAgg.cpp

index 39c3b499545377a64285a56a14732517071cea36..65f8a1a2e4117c914b511b193b76f2fc0a8e209f 100644 (file)
@@ -369,6 +369,10 @@ void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
     return;
   }
 
+#if 0
+  // FIXME: Disabled while we figure out what to do about 
+  // test/CodeGen/bitfield.c
+  //
   // If we can, prefer a copy from a global; this is a lot less
   // code for long globals, and it's easier for the current optimizers
   // to analyze.
@@ -384,7 +388,7 @@ void AggExprEmitter::VisitInitListExpr(InitListExpr *E) {
     CGF.EmitAggregateCopy(DestPtr, GV, E->getType());
     return;
   }
-
+#endif
   // Handle initialization of an array.
   if (E->getType()->isArrayType()) {
     const llvm::PointerType *APType =