Remove tabs from file.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20380 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-02-28 19:36:15 +00:00
parent 47adf21d06
commit ca76f357b9
2 changed files with 4 additions and 6 deletions

View 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;
}
}

View 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;
}
}