]> granicus.if.org Git - llvm/commitdiff
Fix mixed line terminators. NFC.
authorDimitry Andric <dimitry@andric.com>
Fri, 14 Jul 2017 21:14:58 +0000 (21:14 +0000)
committerDimitry Andric <dimitry@andric.com>
Fri, 14 Jul 2017 21:14:58 +0000 (21:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@308052 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/XRayInstrumentation.cpp

index 1a8d5a4f45dae5dde7f982dd5851a2f804c234cd..0b4c6e551667b4e9149589f917aee4f537d9118a 100644 (file)
@@ -142,9 +142,9 @@ bool XRayInstrumentation::runOnMachineFunction(MachineFunction &MF) {
       return false; // Invalid value for threshold.
 
     // Count the number of MachineInstr`s in MachineFunction
-    int64_t MICount = 0;\r
-    for (const auto& MBB : MF)\r
-      MICount += MBB.size();\r
+    int64_t MICount = 0;
+    for (const auto& MBB : MF)
+      MICount += MBB.size();
 
     // Check if we have a loop.
     // FIXME: Maybe make this smarter, and see whether the loops are dependent