[llvm-commits] [poolalloc] r161200 - /poolalloc/trunk/lib/DSA/Local.cpp

Will Dietz wdietz2 at illinois.edu
Thu Aug 2 12:10:24 PDT 2012


Author: wdietz2
Date: Thu Aug  2 14:10:24 2012
New Revision: 161200

URL: http://llvm.org/viewvc/llvm-project?rev=161200&view=rev
Log:
Disable handling of EH intrinsics to fix 3.2 build, needs proper updating.

Split out from previous commit to highlight that exception intrinsics
  are *not* handled correctly yet.

Modified:
    poolalloc/trunk/lib/DSA/Local.cpp

Modified: poolalloc/trunk/lib/DSA/Local.cpp
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/lib/DSA/Local.cpp?rev=161200&r1=161199&r2=161200&view=diff
==============================================================================
--- poolalloc/trunk/lib/DSA/Local.cpp (original)
+++ poolalloc/trunk/lib/DSA/Local.cpp Thu Aug  2 14:10:24 2012
@@ -952,6 +952,8 @@
       N->setModifiedMarker();
     return true;
 
+    // TODO: Add support for the new EH system
+#if 0
   case Intrinsic::eh_exception: {
     DSNode * Node = createNode();
     Node->setIncompleteMarker();
@@ -973,6 +975,8 @@
     }
     return true;
   }
+#endif
+
   case Intrinsic::eh_typeid_for: {
     DSNodeHandle Ptr = getValueDest(*CS.arg_begin());
     Ptr.getNode()->setReadMarker();





More information about the llvm-commits mailing list