diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2008-03-05 23:41:37 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2008-03-05 23:41:37 +0000 |
commit | 6ad150baac1f3afc2d8183ea20afb2b2ee55854c (patch) | |
tree | a36c06443288583debb9162350cee2d5fabc5ee6 /lib/Target/CBackend/CBackend.cpp | |
parent | e0a6a3f22d2d847237e802307c2e6cd036d3c0ac (diff) |
gcc likes things spelled correctly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47981 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CBackend/CBackend.cpp')
-rw-r--r-- | lib/Target/CBackend/CBackend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp index 3a4e97e276..4732e4d6d8 100644 --- a/lib/Target/CBackend/CBackend.cpp +++ b/lib/Target/CBackend/CBackend.cpp @@ -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; "; |