diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-03-14 18:19:52 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-03-14 18:19:52 +0000 |
commit | 34661e72fc0ae1a993db4cec953e999c61a7569c (patch) | |
tree | 9a557f377a8437faf424ddbb8679fe409ffc0cf0 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 5ae1da96f2ac4a68543295f227398f8e93018eb0 (diff) |
BIT_CONVERT has been renamed to BITCAST.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127600 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 2c97d35618..bcb0ffe3a5 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -5908,7 +5908,7 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const { case ISD::UINT_TO_FP: return "uint_to_fp"; case ISD::FP_TO_SINT: return "fp_to_sint"; case ISD::FP_TO_UINT: return "fp_to_uint"; - case ISD::BITCAST: return "bit_convert"; + case ISD::BITCAST: return "bitcast"; case ISD::FP16_TO_FP32: return "fp16_to_fp32"; case ISD::FP32_TO_FP16: return "fp32_to_fp16"; |