From 7afacd5dc4614aff70ba9856b53541637309e282 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Tue, 8 Jun 2010 03:52:53 +0000 Subject: [PATCH] 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 --- lib/CodeGen/CGBuiltin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))); -- 2.40.0