Describe the process better.
authorSean Silva <chisophugis@gmail.com>
Thu, 6 Aug 2015 22:03:54 +0000 (22:03 +0000)
committerSean Silva <chisophugis@gmail.com>
Thu, 6 Aug 2015 22:03:54 +0000 (22:03 +0000)
Patch by Vedant Kumar! <vsk@apple.com>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244283 91177308-0d34-0410-b5e6-96231b3b80d8

docs/DeveloperPolicy.rst

index 005a325684ed1a4ea470900d6b5095ffc610b9ac..ea498dde459ab45b1d1b9f6d2b7a6e47c344fa83 100644 (file)
@@ -509,9 +509,11 @@ for llvm users and not imposing a big burden on llvm developers:
   ``test/Bitcode/compatibility.ll``.
 
 * The bitcode format produced by a X.Y release will be readable by all
-  following X.Z releases and the (X+1).0 release. To help ensure this, an X.Y
-  version of ``test/Bitcode/compatibility.ll`` should be assembled and
-  committed after each release.
+  following X.Z releases and the (X+1).0 release.
+
+* After each X.Y release, ``compatibility.ll`` must be copied to
+  ``compatibility-X.Y.ll``. The corresponding bitcode file should be assembled
+  using the X.Y build and committed as ``compatibility-X.Y.ll.bc``.
 
 * Newer releases can ignore features from older releases, but they cannot
   miscompile them. For example, if nsw is ever replaced with something else,