[llvm-commits] [llvm] r47388 - /llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

Devang Patel dpatel at apple.com
Wed Feb 20 10:37:40 PST 2008


Author: dpatel
Date: Wed Feb 20 12:37:40 2008
New Revision: 47388

URL: http://llvm.org/viewvc/llvm-project?rev=47388&view=rev
Log:
assert is more effective reminder then FIXME tag for unimplemented features.

Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp?rev=47388&r1=47387&r2=47388&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp Wed Feb 20 12:37:40 2008
@@ -609,7 +609,7 @@
   void visitMemIntrinsic(CallInst &I, unsigned Op);
 
   void visitGetResult(GetResultInst &I) {
-    // FIXME
+    assert (0 && "getresult unimplemented");
   }
 
   void visitUserOp1(Instruction &I) {





More information about the llvm-commits mailing list