ARM: 80-column
authorSaleem Abdulrasool <compnerd@compnerd.org>
Tue, 16 Dec 2014 04:10:10 +0000 (04:10 +0000)
committerSaleem Abdulrasool <compnerd@compnerd.org>
Tue, 16 Dec 2014 04:10:10 +0000 (04:10 +0000)
clang-format a function with an overly long string constant.  NFC.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224314 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp

index 98190ba6ba044b6caf4ead85ea4b3ae391228271..50c890cac7d9188aae1337ef40d6fa2ba4a35db8 100644 (file)
@@ -64,10 +64,11 @@ static bool getMCRDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI,
 }
 
 static bool getITDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI,
-                                  std::string &Info) {
-  if (STI.getFeatureBits() & llvm::ARM::HasV8Ops &&
-      MI.getOperand(1).isImm() && MI.getOperand(1).getImm() != 8) {
-    Info = "applying IT instruction to more than one subsequent instruction is deprecated";
+                                 std::string &Info) {
+  if (STI.getFeatureBits() & llvm::ARM::HasV8Ops && MI.getOperand(1).isImm() &&
+      MI.getOperand(1).getImm() != 8) {
+    Info = "applying IT instruction to more than one subsequent instruction is "
+           "deprecated";
     return true;
   }