Refactor the bitcast code into its own function.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55387 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman
2008-08-26 21:28:54 +00:00
parent 72d63af3f7
commit 763d89343b
2 changed files with 72 additions and 58 deletions

View File

@@ -167,6 +167,9 @@ private:
bool SelectGetElementPtr(Instruction *I,
DenseMap<const Value*, unsigned> &ValueMap);
bool SelectBitCast(Instruction *I,
DenseMap<const Value*, unsigned> &ValueMap);
};
}