//===- JumpThreading.cpp - Thread control through conditional blocks ------===////// The LLVM Compiler Infrastructure//// This file is distributed under the University of Illinois Open Source// License. See LICENSE.TXT for details.////===----------------------------------------------------------------------===////// This file implements the Jump Threading pass.////===----------------------------------------------------------------------===//#define DEBUG_TYPE "jump-threading"#include"llvm/Transforms/Scalar.h"#include"llvm/IntrinsicInst.h"#include"llvm/LLVMContext.h"#include"llvm/Pass.h"#include"llvm/Analysis/InstructionSimplify.h"#include"llvm/Analysis/LazyValueInfo.h"#include"llvm/Analysis/Loads.h"#include"llvm/Transforms/Utils/BasicBlockUtils.h"