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

commit a LOT of files.

llvm-svn: 35858
This commit is contained in:
Chris Lattner 2007-04-10 03:20:39 +00:00
parent 0e772b7726
commit f269d84ca0
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();