commit | e9a5a503226d2374cb61ec40e52dd5f079cef69b | [log] [tgz] |
---|---|---|
author | Matt Arsenault <Matthew.Arsenault@amd.com> | Wed Jul 02 06:45:26 2014 +0000 |
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | Wed Jul 02 06:45:26 2014 +0000 |
tree | 84bf8f484908fcf4e8e9ed4523305c5ecb3d29f9 | |
parent | f28e2a4282c586ab41f39c177ca9bebc9244c53f [diff] [blame] |
Fix missing const llvm-svn: 212168
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index 0ec5c33..08fef5f 100644 --- a/llvm/lib/CodeGen/MachineBasicBlock.cpp +++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp
@@ -332,7 +332,7 @@ } } -void MachineBasicBlock::printAsOperand(raw_ostream &OS, bool /*PrintType*/) { +void MachineBasicBlock::printAsOperand(raw_ostream &OS, bool /*PrintType*/) const { OS << "BB#" << getNumber(); }