diff options
author | Robert Bocchino <bocchino@illinois.edu> | 2006-01-10 20:03:46 +0000 |
---|---|---|
committer | Robert Bocchino <bocchino@illinois.edu> | 2006-01-10 20:03:46 +0000 |
commit | bb90a7aa7bf71311046ccc9f277e5f76cc082722 (patch) | |
tree | 0a29b904c6337ba50b7b6f7b8b3ede2677e6da25 /lib/VMCore/ConstantFold.cpp | |
parent | 5e1b72c153dafaaf73e82c2c76f93ed55d74a889 (diff) | |
download | external_llvm-bb90a7aa7bf71311046ccc9f277e5f76cc082722.zip external_llvm-bb90a7aa7bf71311046ccc9f277e5f76cc082722.tar.gz external_llvm-bb90a7aa7bf71311046ccc9f277e5f76cc082722.tar.bz2 |
Added constant folding support for the extractelement operation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25187 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/ConstantFold.cpp')
-rw-r--r-- | lib/VMCore/ConstantFold.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/VMCore/ConstantFold.cpp b/lib/VMCore/ConstantFold.cpp index 40a51cc..3f7bc7d 100644 --- a/lib/VMCore/ConstantFold.cpp +++ b/lib/VMCore/ConstantFold.cpp @@ -724,6 +724,16 @@ Constant *llvm::ConstantFoldSelectInstruction(const Constant *Cond, return 0; } +Constant *llvm::ConstantFoldExtractElementInstruction(const Constant *Val, + const Constant *Idx) { + if (const ConstantPacked *CVal = dyn_cast<ConstantPacked>(Val)) { + if (const ConstantUInt *CIdx = dyn_cast<ConstantUInt>(Idx)) { + return const_cast<Constant*>(CVal->getOperand(CIdx->getValue())); + } + } + return 0; +} + /// isZeroSizedType - This type is zero sized if its an array or structure of /// zero sized types. The only leaf zero sized type is an empty structure. static bool isMaybeZeroSizedType(const Type *Ty) { |