From: Bill Wendling Date: Mon, 22 Jul 2013 20:15:41 +0000 (+0000) Subject: Use the updated name for the attribute. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45ccf286af684ab40c2e4d6dd667e2c2e26946bf;p=clang Use the updated name for the attribute. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@186864 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGCall.cpp b/lib/CodeGen/CGCall.cpp index 45c6790940..0a202ef5d4 100644 --- a/lib/CodeGen/CGCall.cpp +++ b/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)); }