From 103799c06028c93efff0163c42d2d53ad1857fd3 Mon Sep 17 00:00:00 2001 From: Kristina Brooks Date: Sun, 24 Feb 2019 18:06:10 +0000 Subject: [PATCH] Fix accidentally used hard tabs. NFC Big sorry. This undoes the indentation mess I made in r354751. llvm-svn: 354752 --- clang/lib/CodeGen/CGBuiltin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/CodeGen/CGBuiltin.cpp b/clang/lib/CodeGen/CGBuiltin.cpp index a36e0803dfaf..43c8020450f4 100644 --- a/clang/lib/CodeGen/CGBuiltin.cpp +++ b/clang/lib/CodeGen/CGBuiltin.cpp @@ -2007,7 +2007,7 @@ RValue CodeGenFunction::EmitBuiltinExpr(const GlobalDecl GD, unsigned BuiltinID, unsigned Alignment = (unsigned)AlignmentCI->getZExtValue(); EmitAlignmentAssumption(PtrValue, Ptr, - /*The expr loc is sufficient.*/ SourceLocation(), + /*The expr loc is sufficient.*/ SourceLocation(), Alignment, OffsetValue); return RValue::get(PtrValue); }