r186864 - Use the updated name for the attribute.
Bill Wendling
isanbard at gmail.com
Mon Jul 22 13:15:41 PDT 2013
Author: void
Date: Mon Jul 22 15:15:41 2013
New Revision: 186864
URL: http://llvm.org/viewvc/llvm-project?rev=186864&view=rev
Log:
Use the updated name for the attribute.
Modified:
cfe/trunk/lib/CodeGen/CGCall.cpp
Modified: cfe/trunk/lib/CodeGen/CGCall.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGCall.cpp?rev=186864&r1=186863&r2=186864&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGCall.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGCall.cpp Mon Jul 22 15:15:41 2013
@@ -1070,7 +1070,7 @@ void CodeGenModule::ConstructAttributeLi
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));
}
More information about the cfe-commits
mailing list