[PATCH] D31102: Rename AttributeSet to AttributeList

Reid Kleckner via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 21 10:10:06 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL298393: Rename AttributeSet to AttributeList (authored by rnk).

Changed prior to commit:
  https://reviews.llvm.org/D31102?vs=92201&id=92506#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D31102

Files:
  llvm/trunk/docs/HowToUseAttributes.rst
  llvm/trunk/include/llvm/CodeGen/CommandFlags.h
  llvm/trunk/include/llvm/IR/Argument.h
  llvm/trunk/include/llvm/IR/Attributes.h
  llvm/trunk/include/llvm/IR/CallSite.h
  llvm/trunk/include/llvm/IR/Function.h
  llvm/trunk/include/llvm/IR/Instructions.h
  llvm/trunk/include/llvm/IR/Intrinsics.h
  llvm/trunk/include/llvm/IR/Module.h
  llvm/trunk/include/llvm/IR/Statepoint.h
  llvm/trunk/include/llvm/Target/TargetLowering.h
  llvm/trunk/include/llvm/Transforms/Utils/BuildLibCalls.h
  llvm/trunk/include/llvm/Transforms/Utils/FunctionComparator.h
  llvm/trunk/lib/Analysis/MemoryBuiltins.cpp
  llvm/trunk/lib/AsmParser/LLParser.cpp
  llvm/trunk/lib/AsmParser/LLParser.h
  llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp
  llvm/trunk/lib/Bitcode/Writer/BitcodeWriter.cpp
  llvm/trunk/lib/Bitcode/Writer/ValueEnumerator.cpp
  llvm/trunk/lib/Bitcode/Writer/ValueEnumerator.h
  llvm/trunk/lib/CodeGen/Analysis.cpp
  llvm/trunk/lib/CodeGen/AtomicExpandPass.cpp
  llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp
  llvm/trunk/lib/CodeGen/GlobalISel/CallLowering.cpp
  llvm/trunk/lib/CodeGen/MachinePipeliner.cpp
  llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
  llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
  llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
  llvm/trunk/lib/CodeGen/SelectionDAG/TargetLowering.cpp
  llvm/trunk/lib/CodeGen/TargetLoweringBase.cpp
  llvm/trunk/lib/ExecutionEngine/ExecutionEngineBindings.cpp
  llvm/trunk/lib/IR/AsmWriter.cpp
  llvm/trunk/lib/IR/AttributeImpl.h
  llvm/trunk/lib/IR/AttributeSetNode.h
  llvm/trunk/lib/IR/Attributes.cpp
  llvm/trunk/lib/IR/Core.cpp
  llvm/trunk/lib/IR/Function.cpp
  llvm/trunk/lib/IR/Instructions.cpp
  llvm/trunk/lib/IR/LLVMContextImpl.cpp
  llvm/trunk/lib/IR/LLVMContextImpl.h
  llvm/trunk/lib/IR/Module.cpp
  llvm/trunk/lib/IR/Statepoint.cpp
  llvm/trunk/lib/IR/Value.cpp
  llvm/trunk/lib/IR/Verifier.cpp
  llvm/trunk/lib/Target/AArch64/AArch64CallLowering.cpp
  llvm/trunk/lib/Target/AArch64/AArch64FrameLowering.cpp
  llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp
  llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.h
  llvm/trunk/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.cpp
  llvm/trunk/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
  llvm/trunk/lib/Target/ARM/ARMCallLowering.cpp
  llvm/trunk/lib/Target/AVR/AVRISelLowering.cpp
  llvm/trunk/lib/Target/Hexagon/HexagonBitTracker.cpp
  llvm/trunk/lib/Target/Hexagon/HexagonTargetMachine.cpp
  llvm/trunk/lib/Target/Mips/Mips16HardFloat.cpp
  llvm/trunk/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
  llvm/trunk/lib/Target/NVPTX/NVPTXISelLowering.cpp
  llvm/trunk/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
  llvm/trunk/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
  llvm/trunk/lib/Target/WebAssembly/WebAssemblyISelLowering.h
  llvm/trunk/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
  llvm/trunk/lib/Target/X86/X86CallLowering.cpp
  llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
  llvm/trunk/lib/Target/X86/X86ISelLowering.h
  llvm/trunk/lib/Target/XCore/XCoreFrameLowering.cpp
  llvm/trunk/lib/Transforms/Coroutines/CoroSplit.cpp
  llvm/trunk/lib/Transforms/Coroutines/Coroutines.cpp
  llvm/trunk/lib/Transforms/IPO/ArgumentPromotion.cpp
  llvm/trunk/lib/Transforms/IPO/DeadArgumentElimination.cpp
  llvm/trunk/lib/Transforms/IPO/FunctionAttrs.cpp
  llvm/trunk/lib/Transforms/IPO/GlobalOpt.cpp
  llvm/trunk/lib/Transforms/IPO/MergeFunctions.cpp
  llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp
  llvm/trunk/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
  llvm/trunk/lib/Transforms/Instrumentation/MemorySanitizer.cpp
  llvm/trunk/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
  llvm/trunk/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h
  llvm/trunk/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
  llvm/trunk/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
  llvm/trunk/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
  llvm/trunk/lib/Transforms/Utils/BuildLibCalls.cpp
  llvm/trunk/lib/Transforms/Utils/CloneFunction.cpp
  llvm/trunk/lib/Transforms/Utils/CodeExtractor.cpp
  llvm/trunk/lib/Transforms/Utils/FunctionComparator.cpp
  llvm/trunk/lib/Transforms/Utils/Local.cpp
  llvm/trunk/lib/Transforms/Utils/ModuleUtils.cpp
  llvm/trunk/lib/Transforms/Utils/SimplifyLibCalls.cpp
  llvm/trunk/unittests/ExecutionEngine/Orc/IndirectionUtilsTest.cpp
  llvm/trunk/unittests/IR/AttributesTest.cpp
  llvm/trunk/unittests/IR/InstructionsTest.cpp
  llvm/trunk/unittests/IR/LegacyPassManagerTest.cpp
  llvm/trunk/unittests/IR/VerifierTest.cpp
  llvm/trunk/unittests/Transforms/Utils/Cloning.cpp
  llvm/trunk/utils/TableGen/IntrinsicEmitter.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D31102.92506.patch
Type: text/x-patch
Size: 233573 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170321/621bba9f/attachment-0001.bin>


More information about the llvm-commits mailing list