diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-10 03:20:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-10 03:20:39 +0000 |
commit | c6eb6d72550aa3f7241141e3e28520dfef738c81 (patch) | |
tree | 6aadf59bd395796d14d6c07c1a8c1b10eaecf392 /lib/CodeGen | |
parent | 466b9bd7571dff9ef1584cf74031f07370eea6de (diff) |
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
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/IntrinsicLowering.cpp | 2 | ||||
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/IntrinsicLowering.cpp b/lib/CodeGen/IntrinsicLowering.cpp index 359ca00000..2c64b20a32 100644 --- a/lib/CodeGen/IntrinsicLowering.cpp +++ b/lib/CodeGen/IntrinsicLowering.cpp @@ -475,7 +475,7 @@ void IntrinsicLowering::LowerIntrinsicCall(CallInst *CI) { break; } - case Intrinsic::bit_part_select: + case Intrinsic::part_select: CI->replaceAllUsesWith(LowerBitPartSelect(CI)); break; diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 967144ca71..cd194c96cf 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -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(); |