apparently some people commit without building the tree, or they forget to

commit a LOT of files.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35858 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-04-10 03:20:39 +00:00
parent 466b9bd757
commit c6eb6d7255
2 changed files with 2 additions and 2 deletions

View File

@ -475,7 +475,7 @@ void IntrinsicLowering::LowerIntrinsicCall(CallInst *CI) {
break;
}
case Intrinsic::bit_part_select:
case Intrinsic::part_select:
CI->replaceAllUsesWith(LowerBitPartSelect(CI));
break;

View File

@ -2689,7 +2689,7 @@ SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
DAG.setRoot(Tmp.getValue(1));
return 0;
}
case Intrinsic::bit_part_select: {
case Intrinsic::part_select: {
// Currently not implemented: just abort
assert(0 && "bit_part_select intrinsic not implemented");
abort();