search for: gconly

Displaying 3 results from an estimated 3 matches for "gconly".

Did you mean: gconf
2010 Oct 30
0
[LLVMdev] RFC: [Proposal] Module-Level Attributes
On Oct 28, 2010, at 5:46 PM, Bill Wendling wrote: > > Comments? Hi Bill, This is a broad solution to what sounds like a specific problem. Are there any other uses for module-level attributes anticipated? Do you anticipate defining what ImageInfo, CorrectedSynthesize, GCOnly, etc. mean in LangRef.html, or are they just going to be left as "The is for ObjC." ? Thanks, Dan -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101030/b8011806/attachment.html>
2010 Oct 29
6
[LLVMdev] RFC: [Proposal] Module-Level Attributes
...A, __objc_imageinfo, regular, no_dead_strip" With module-level attributes, these global variables wouldn't exist. Instead, they would be replaced by something like this: -fno-objc-gc: module attr ImageInfo [CorrectedSynthesize] -fobjc-gc-only: module attr ImageInfo [CorrectedSynthesize, GCOnly] LTO would see that the module attributes are incompatible and will reject trying to link the two modules. Comments? -bw -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101028/7a8ff71e/attachment.html>
2014 Nov 03
8
[LLVMdev] [PATCH] Protection against stack-based memory corruption errors using SafeStack
...ling") diff --git a/include/clang/Basic/LangOptions.h b/include/clang/Basic/LangOptions.h index 712af26..50e352f 100644 --- a/include/clang/Basic/LangOptions.h +++ b/include/clang/Basic/LangOptions.h @@ -66,7 +66,7 @@ public: typedef clang::Visibility Visibility; enum GCMode { NonGC, GCOnly, HybridGC }; - enum StackProtectorMode { SSPOff, SSPOn, SSPStrong, SSPReq }; + enum StackProtectorMode { SSPOff, SSPOn, SSPStrong, SSPReq, SSPSafeStack }; enum SignedOverflowBehaviorTy { SOB_Undefined, // Default C standard behavior. diff --git a/include/clang/Driver/Options.td b/inc...