[llvm-commits] [llvm] r110215 - /llvm/trunk/utils/llvm.grm

Dan Gohman gohman at apple.com
Wed Aug 4 10:01:59 PDT 2010


Author: djg
Date: Wed Aug  4 12:01:59 2010
New Revision: 110215

URL: http://llvm.org/viewvc/llvm-project?rev=110215&view=rev
Log:
Update the polygen grammar for linker_private and linker_private_weak,
and add comments about major implemented features.

Modified:
    llvm/trunk/utils/llvm.grm

Modified: llvm/trunk/utils/llvm.grm
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/llvm.grm?rev=110215&r1=110214&r2=110215&view=diff
==============================================================================
--- llvm/trunk/utils/llvm.grm (original)
+++ llvm/trunk/utils/llvm.grm Wed Aug  4 12:01:59 2010
@@ -8,6 +8,9 @@
 IR that is semantically valid. Most of the IR produced doesn't
 pass the Verifier.
 
+TODO: Metadata, in all its forms
+TODO: Union types
+
 *)
 
 I ::=   "title:    LLVM assembly language\n"
@@ -90,6 +93,8 @@
  | dllexport
  | common
  | private
+ | "linker_private"
+ | "linker_private_weak"
  ;
 
 GVExternalLinkage





More information about the llvm-commits mailing list