From b0bc6c361da9009e8414efde317d9bbff755f6c0 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Mon, 15 Feb 2010 16:12:20 +0000 Subject: Uniformize the names of type predicates: rather than having isFloatTy and isInteger, we now have isFloatTy and isIntegerTy. Requested by Chris! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96223 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/ProgrammersManual.html | 4 +- include/llvm/Instructions.h | 12 +- include/llvm/Type.h | 42 +++---- lib/Analysis/ConstantFolding.cpp | 4 +- lib/Analysis/ScalarEvolution.cpp | 48 ++++---- lib/Analysis/ScalarEvolutionExpander.cpp | 2 +- lib/Analysis/ValueTracking.cpp | 16 +-- lib/AsmParser/LLParser.cpp | 36 +++--- lib/Bitcode/Reader/BitcodeReader.cpp | 14 +-- lib/CodeGen/IntrinsicLowering.cpp | 4 +- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 10 +- lib/CodeGen/StackProtector.cpp | 2 +- lib/ExecutionEngine/ExecutionEngine.cpp | 8 +- lib/ExecutionEngine/Interpreter/Execution.cpp | 18 +-- lib/ExecutionEngine/JIT/JIT.cpp | 8 +- lib/Target/CBackend/CBackend.cpp | 19 +-- lib/Target/CppBackend/CPPBackend.cpp | 6 +- lib/Target/MSIL/MSILWriter.cpp | 8 +- lib/Target/MSP430/MSP430ISelLowering.cpp | 4 +- lib/Target/X86/X86FastISel.cpp | 12 +- lib/Target/X86/X86FloatingPointRegKill.cpp | 2 +- lib/Target/X86/X86ISelLowering.cpp | 10 +- lib/Transforms/IPO/DeadTypeElimination.cpp | 4 +- lib/Transforms/IPO/GlobalOpt.cpp | 4 +- lib/Transforms/InstCombine/InstCombineAddSub.cpp | 12 +- lib/Transforms/InstCombine/InstCombineAndOrXor.cpp | 8 +- lib/Transforms/InstCombine/InstCombineCalls.cpp | 2 +- lib/Transforms/InstCombine/InstCombineCasts.cpp | 4 +- lib/Transforms/InstCombine/InstCombineCompares.cpp | 4 +- .../InstCombine/InstCombineLoadStoreAlloca.cpp | 10 +- .../InstCombine/InstCombineMulDivRem.cpp | 12 +- lib/Transforms/InstCombine/InstCombineSelect.cpp | 4 +- .../InstCombine/InstCombineSimplifyDemanded.cpp | 4 +- .../InstCombine/InstructionCombining.cpp | 8 +- lib/Transforms/Instrumentation/ProfilingUtils.cpp | 2 +- lib/Transforms/Scalar/JumpThreading.cpp | 2 +- lib/Transforms/Scalar/LoopUnswitch.cpp | 10 +- lib/Transforms/Scalar/MemCpyOptimizer.cpp | 2 +- lib/Transforms/Scalar/Reassociate.cpp | 6 +- lib/Transforms/Scalar/ScalarReplAggregates.cpp | 13 ++- lib/Transforms/Scalar/SimplifyLibCalls.cpp | 22 ++-- lib/Transforms/Utils/SimplifyCFG.cpp | 2 +- lib/VMCore/AsmWriter.cpp | 6 +- lib/VMCore/Attributes.cpp | 2 +- lib/VMCore/ConstantFold.cpp | 26 ++--- lib/VMCore/Constants.cpp | 80 ++++++------- lib/VMCore/Instructions.cpp | 127 +++++++++++---------- lib/VMCore/Type.cpp | 30 ++--- lib/VMCore/ValueTypes.cpp | 4 +- lib/VMCore/Verifier.cpp | 59 +++++----- 50 files changed, 381 insertions(+), 377 deletions(-) diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index a37eca2cb8..d74a645558 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -2999,9 +2999,9 @@ the lib/VMCore directory.