Remove tabs from file.
[oota-llvm.git] / lib / Target / CBackend / CBackend.cpp
index e2431a2eb1442df4150560053178c0a83199e58c..dfd06a73e71fbed5094e5be20586ce3ddf55c902 100644 (file)
@@ -1508,15 +1508,14 @@ void CWriter::visitCallInst(CallInst &I) {
         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;
       }
     }