Added missing const from my last commit.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172736 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Michael Gottesman 2013-01-17 18:36:17 +00:00
parent 88ceb186f1
commit 222f02f7eb

View File

@ -170,7 +170,7 @@ namespace {
raw_ostream &operator<<(raw_ostream &OS, const InstructionClass Class)
LLVM_ATTRIBUTE_USED;
raw_ostream &operator<<(raw_ostream &OS, InstructionClass Class) {
raw_ostream &operator<<(raw_ostream &OS, const InstructionClass Class) {
switch (Class) {
case IC_Retain:
return OS << "IC_Retain";