diff options
author | Chris Lattner <sabre@nondot.org> | 2001-12-03 22:26:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-12-03 22:26:30 +0000 |
commit | 3462ae3ad7944394d0e9b82be222a43a26ca289a (patch) | |
tree | f9ecc5677deccb6e178948795e6e268023d98a0c /llvm/lib/VMCore/iSwitch.cpp | |
parent | bca18d7d96fd6d0df98019074e144f5b270d222c (diff) | |
download | bcm5719-llvm-3462ae3ad7944394d0e9b82be222a43a26ca289a.tar.gz bcm5719-llvm-3462ae3ad7944394d0e9b82be222a43a26ca289a.zip |
Rename ConstPoolVal -> Constant
Rename ConstPool* -> Constant*
Rename ConstPoolVals.h -> ConstantVals.h
llvm-svn: 1407
Diffstat (limited to 'llvm/lib/VMCore/iSwitch.cpp')
-rw-r--r-- | llvm/lib/VMCore/iSwitch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/iSwitch.cpp b/llvm/lib/VMCore/iSwitch.cpp index e5e3c50cfd5..91edbc0dce2 100644 --- a/llvm/lib/VMCore/iSwitch.cpp +++ b/llvm/lib/VMCore/iSwitch.cpp @@ -27,7 +27,7 @@ SwitchInst::SwitchInst(const SwitchInst &SI) } } -void SwitchInst::dest_push_back(ConstPoolVal *OnVal, BasicBlock *Dest) { +void SwitchInst::dest_push_back(Constant *OnVal, BasicBlock *Dest) { Operands.push_back(Use(OnVal, this)); Operands.push_back(Use(Dest, this)); } |