diff options
author | Chris Lattner <sabre@nondot.org> | 2003-04-23 16:24:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-04-23 16:24:19 +0000 |
commit | 3b1ca40d5d6c8e796db1e218e88dd7e2b77b417e (patch) | |
tree | ffb4049290a1a615272ba0c5f4619743dfc72cf3 | |
parent | 14383485ac546e369b11797b42bc20831b6db57b (diff) |
Add stub to create lowerSwitches pass
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5866 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Transforms/Scalar.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Transforms/Scalar.h b/include/llvm/Transforms/Scalar.h index 1ade0f4977..e3a5e1b87c 100644 --- a/include/llvm/Transforms/Scalar.h +++ b/include/llvm/Transforms/Scalar.h @@ -224,6 +224,11 @@ extern const PassInfo *LoopPreheadersID; Pass *createLowerAllocationsPass(); Pass *createRaiseAllocationsPass(); +//===----------------------------------------------------------------------===// +// This pass converts SwitchInst instructions into a sequence of chained binary +// branch instructions. +// +Pass *createLowerSwitchPass(); //===----------------------------------------------------------------------===// // |