diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-07-22 20:15:41 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-07-22 20:15:41 +0000 |
commit | b321972fdfdae6fc6818aa66049060d70d5a8fe7 (patch) | |
tree | e14d6d49f036fb5ace64647d380434da40442bd7 /clang/lib/CodeGen/CGCall.cpp | |
parent | c02a0aabb570b4451041dc22bdab5488ea9b6b99 (diff) | |
download | bcm5719-llvm-b321972fdfdae6fc6818aa66049060d70d5a8fe7.tar.gz bcm5719-llvm-b321972fdfdae6fc6818aa66049060d70d5a8fe7.zip |
Use the updated name for the attribute.
llvm-svn: 186864
Diffstat (limited to 'clang/lib/CodeGen/CGCall.cpp')
-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 45c6790940d..0a202ef5d4f 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)); } |