diff options
-rw-r--r-- | clang/lib/CodeGen/CGCall.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGCall.cpp b/clang/lib/CodeGen/CGCall.cpp index 7bf9082007c..a9caa88706a 100644 --- a/clang/lib/CodeGen/CGCall.cpp +++ b/clang/lib/CodeGen/CGCall.cpp @@ -1328,7 +1328,7 @@ void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI, // inalloca). If already have a pointer, EmitParmDecl doesn't need to copy it // into a local alloca for us. enum ValOrPointer { HaveValue = 0, HavePointer = 1 }; - typedef llvm::PointerIntPair<llvm::Value *, 1, ValOrPointer> ValueAndIsPtr; + typedef llvm::PointerIntPair<llvm::Value *, 1> ValueAndIsPtr; SmallVector<ValueAndIsPtr, 16> ArgVals; ArgVals.reserve(Args.size()); |