Unbreak the build on non-apple compilers :-(

llvm-svn: 27173
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 43679c7..3d22278 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -2689,10 +2689,11 @@
   case ISD::FrameIndex:    return "FrameIndex";
   case ISD::ConstantPool:  return "ConstantPool";
   case ISD::ExternalSymbol: return "ExternalSymbol";
-  case ISD::INTRINSIC:
+  case ISD::INTRINSIC: {
     bool hasChain = getOperand(0).getValueType() == MVT::Other;
     unsigned IID = cast<ConstantSDNode>(getOperand(hasChain))->getValue();
     return Intrinsic::getName((Intrinsic::ID)IID);
+  }
 
   case ISD::BUILD_VECTOR:   return "BUILD_VECTOR";
   case ISD::TargetConstant: return "TargetConstant";