Remove tabs from file.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20380 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/CBackend/Writer.cpp b/lib/Target/CBackend/Writer.cpp
index e2431a2..dfd06a7 100644
--- a/lib/Target/CBackend/Writer.cpp
+++ b/lib/Target/CBackend/Writer.cpp
@@ -1508,15 +1508,14 @@
         Out << ')';
         return;
       case Intrinsic::prefetch:
-	// This is only supported on GCC for now...
-	Out << "LLVM_PREFETCH((const void *)";
+        Out << "LLVM_PREFETCH((const void *)";
         writeOperand(I.getOperand(1));
         Out << ", ";
         writeOperand(I.getOperand(2));
         Out << ", ";
         writeOperand(I.getOperand(3));
         Out << ")";
-	return;
+        return;
       }
     }