From b321972fdfdae6fc6818aa66049060d70d5a8fe7 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Mon, 22 Jul 2013 20:15:41 +0000 Subject: [PATCH] Use the updated name for the attribute. llvm-svn: 186864 --- clang/lib/CodeGen/CGCall.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/CodeGen/CGCall.cpp b/clang/lib/CodeGen/CGCall.cpp index 45c6790940d9..0a202ef5d4f8 100644 --- a/clang/lib/CodeGen/CGCall.cpp +++ b/clang/lib/CodeGen/CGCall.cpp @@ -1070,7 +1070,7 @@ void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI, CodeGenOpts.UnsafeFPMath ? "true" : "false"); FuncAttrs.addAttribute("use-soft-float", CodeGenOpts.SoftFloat ? "true" : "false"); - FuncAttrs.addAttribute("ssp-buffer-size", + FuncAttrs.addAttribute("stack-protector-buffer-size", llvm::utostr(CodeGenOpts.SSPBufferSize)); } -- GitLab