From 0d7390c3fd97d30210766847cd4e66aaf322b632 Mon Sep 17 00:00:00 2001 From: Vasileios Kalintiris Date: Mon, 12 Oct 2015 15:39:41 +0000 Subject: [PATCH] [mips][FastISel] Clang-format switch statement. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@250053 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Mips/MipsFastISel.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/Target/Mips/MipsFastISel.cpp b/lib/Target/Mips/MipsFastISel.cpp index 4e19bcbaae5..23b0215b047 100644 --- a/lib/Target/Mips/MipsFastISel.cpp +++ b/lib/Target/Mips/MipsFastISel.cpp @@ -237,16 +237,16 @@ unsigned MipsFastISel::emitLogicalOp(unsigned ISDOpc, MVT RetVT, unsigned Opc; switch (ISDOpc) { - case ISD::AND: - Opc = Mips::AND; - break; - case ISD::OR: - Opc = Mips::OR; - break; - case ISD::XOR: - Opc = Mips::XOR; - break; - default: + case ISD::AND: + Opc = Mips::AND; + break; + case ISD::OR: + Opc = Mips::OR; + break; + case ISD::XOR: + Opc = Mips::XOR; + break; + default: llvm_unreachable("unexpected opcode"); } -- 2.34.1