summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVasileios Kalintiris <Vasileios.Kalintiris@imgtec.com>2015-10-12 15:39:41 +0000
committerVasileios Kalintiris <Vasileios.Kalintiris@imgtec.com>2015-10-12 15:39:41 +0000
commit2a95f82859a9c9d269c1815249791d8d7ea1bde3 (patch)
tree024f6c8b1a94ddac3bbc3c7182fd7c6e31ce1637
parent54f3ddfbe28c3618ef73553e10f52e404cb7caf6 (diff)
downloadbcm5719-llvm-2a95f82859a9c9d269c1815249791d8d7ea1bde3.tar.gz
bcm5719-llvm-2a95f82859a9c9d269c1815249791d8d7ea1bde3.zip
[mips][FastISel] Clang-format switch statement. NFC.
llvm-svn: 250053
-rw-r--r--llvm/lib/Target/Mips/MipsFastISel.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/llvm/lib/Target/Mips/MipsFastISel.cpp b/llvm/lib/Target/Mips/MipsFastISel.cpp
index 4e19bcbaae5..23b0215b047 100644
--- a/llvm/lib/Target/Mips/MipsFastISel.cpp
+++ b/llvm/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");
}
OpenPOWER on IntegriCloud