gcc likes things spelled correctly

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47981 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Andrew Lenharth 2008-03-05 23:41:37 +00:00
parent e0a6a3f22d
commit 6ad150baac

View File

@ -2684,7 +2684,7 @@ bool CWriter::visitBuiltinCall(CallInst &I, Intrinsic::ID ID,
return false;
}
case Intrinsic::memory_barrier:
Out << "__sync_syncronize()";
Out << "__sync_synchronize()";
return true;
case Intrinsic::vastart:
Out << "0; ";