From: NAKAMURA Takumi Date: Tue, 8 Nov 2011 03:27:04 +0000 (+0000) Subject: lib/CodeGen/CGBuiltin.cpp: Tweak the identifier "Type" to appease msvc. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83084c863572b48579767a4dd5dc686e1a8d669d;p=clang lib/CodeGen/CGBuiltin.cpp: Tweak the identifier "Type" to appease msvc. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@144065 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGBuiltin.cpp b/lib/CodeGen/CGBuiltin.cpp index ec271b311d..419dddd0c2 100644 --- a/lib/CodeGen/CGBuiltin.cpp +++ b/lib/CodeGen/CGBuiltin.cpp @@ -1186,9 +1186,9 @@ Value *CodeGenFunction::EmitTargetBuiltinExpr(unsigned BuiltinID, } } -static llvm::VectorType *GetNeonType(LLVMContext &C, NeonTypeFlags Type) { - int IsQuad = Type.isQuad(); - switch (Type.getEltType()) { +static llvm::VectorType *GetNeonType(LLVMContext &C, NeonTypeFlags TypeFlags) { + int IsQuad = TypeFlags.isQuad(); + switch (TypeFlags.getEltType()) { default: break; case NeonTypeFlags::Int8: case NeonTypeFlags::Poly8: