gcc likes things spelled correctly
authorAndrew Lenharth <andrewl@lenharth.org>
Wed, 5 Mar 2008 23:41:37 +0000 (23:41 +0000)
committerAndrew Lenharth <andrewl@lenharth.org>
Wed, 5 Mar 2008 23:41:37 +0000 (23:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47981 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/CBackend/CBackend.cpp

index 3a4e97e276c86dfa5b9fbf2b8e3bcf494fb6db7a..4732e4d6d8ab4e39e145feeadf091650b35d2412 100644 (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; ";