From: Rafael Espindola Date: Tue, 8 Jun 2010 03:52:53 +0000 (+0000) Subject: Fix what looks like a merge problem that broke __clear_cache. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7afacd5dc4614aff70ba9856b53541637309e282;p=clang Fix what looks like a merge problem that broke __clear_cache. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105595 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGBuiltin.cpp b/lib/CodeGen/CGBuiltin.cpp index 1f308eb240..d9d9e075e1 100644 --- a/lib/CodeGen/CGBuiltin.cpp +++ b/lib/CodeGen/CGBuiltin.cpp @@ -902,7 +902,7 @@ Value *CodeGenFunction::EmitARMBuiltinExpr(unsigned BuiltinID, unsigned Int; // Determine the type of this overloaded NEON intrinsic. - if (BuiltinID != ARM::BI__builtin_thread_pointer) { + if (BuiltinID != ARM::BI__clear_cache) { for (unsigned i = 0, e = E->getNumArgs() - 1; i != e; i++) Ops.push_back(EmitScalarExpr(E->getArg(i)));