Fix a few places to check if TargetData is available before using it.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79493 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp
index 7a98b48..5fe8ee8 100644
--- a/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -478,9 +478,9 @@
   // We don't want to form an inttoptr or ptrtoint that converts to an integer
   // type that differs from the pointer size.
   if ((Res == Instruction::IntToPtr &&
-          SrcTy != TD->getIntPtrType(CI->getContext())) ||
+          (!TD || SrcTy != TD->getIntPtrType(CI->getContext()))) ||
       (Res == Instruction::PtrToInt &&
-          DstTy != TD->getIntPtrType(CI->getContext())))
+          (!TD || DstTy != TD->getIntPtrType(CI->getContext()))))
     Res = 0;
   
   return Instruction::CastOps(Res);