https://llvm.org/bugs/show_bug.cgi?id=26284

            Bug ID: 26284
           Summary: C API does not expose all attributes
           Product: new-bugs
           Version: trunk
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: new bugs
          Assignee: unassignedb...@nondot.org
          Reporter: superjo...@gmail.com
                CC: llvm-bugs@lists.llvm.org
    Classification: Unclassified

include/llvm-c/Core.h:

  /* FIXME: These attributes are currently not included in the C API as
       a temporary measure until the API/ABI impact to the C API is understood
       and the path forward agreed upon.
    LLVMSanitizeAddressAttribute = 1ULL << 32,
    LLVMStackProtectStrongAttribute = 1ULL<<35,
    LLVMColdAttribute = 1ULL << 40,
    LLVMOptimizeNoneAttribute = 1ULL << 42,
    LLVMInAllocaAttribute = 1ULL << 43,
    LLVMNonNullAttribute = 1ULL << 44,
    LLVMJumpTableAttribute = 1ULL << 45,
    LLVMConvergentAttribute = 1ULL << 46,
    LLVMSafeStackAttribute = 1ULL << 47,
    */


Specifically I'm trying to use the LLVMNonNullAttribute, but sadly it is
unavailable in the C API.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to