Remove tabs from file.
authorChris Lattner <sabre@nondot.org>
Mon, 28 Feb 2005 19:36:15 +0000 (19:36 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 28 Feb 2005 19:36:15 +0000 (19:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20380 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/CBackend/CBackend.cpp
lib/Target/CBackend/Writer.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;
       }
     }
 
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;
       }
     }