1. 13 3月, 2018 26 次提交
  2. 12 3月, 2018 8 次提交
  3. 11 3月, 2018 6 次提交
    • P
      Fix hygene issue when deriving Debug · c033c6e4
      Phlosioneer 提交于
      The code for several of the core traits doesn't use hygenic macros.
      This isn't a problem, except for the Debug trait, which is the only
      one that uses a variable, named "builder".
      
      Variables can't share names with unit structs, so attempting to
      [derive(Debug)] on any type while a unit struct with the name
      "builder" was in scope would result in an error.
      
      This commit just changes the name of the variable to
      "__debug_trait_builder", because I couldn't figure out how to get a
      list of all unit structs in-scope from within the derive expansion
      function. If someone wants to have a unit struct with
      the exact name "__debug_trait_builder", they'll just have to do it
      without a [derive(Debug)].
      c033c6e4
    • B
      Auto merge of #48907 - kennytm:minor-ci-stuff, r=alexcrichton · 5f2efb09
      bors 提交于
      Some minor CI changes
      
      1. On macOS, ensure crash log printing won't error, and only real crash logs are printed. This may avoid the `find` process exiting abnormally and truncated the Travis log (I guess).
      
      2. Print `/proc/cpuinfo` and `/proc/meminfo`. To determine if there's any variation in the reported clock rate between jobs.
      5f2efb09
    • B
      Auto merge of #48799 - alexcrichton:more-osx-cores, r=Mark-Simulacrum · e5acb0c8
      bors 提交于
      travis: Upgrade OSX builders
      
      This upgrades the OSX builders to the `xcode9.3-moar` image which has 3 cores as
      opposed to the 2 that our builders currently have. Should help make those OSX
      builds a bit speedier!
      e5acb0c8
    • Z
      in which some labels and notes are upgraded to structured suggestions · 9b599856
      Zack M. Davis 提交于
      (Meanwhile, a couple of parse-fail tests are moved to UI tests so that
      the reader can see the new output, and an existing UI test is given a
      more evocative name.)
      9b599856
    • B
      Auto merge of #48908 - varkor:bss-undefined-globals, r=alexcrichton · cd6e30bc
      bors 提交于
      Merge LLVM fix for undefined bss globals
      
      This fixes #41315.
      
      r? @japaric
      cd6e30bc
    • B
      Auto merge of #48691 - Zoxc:profq-chan, r=michaelwoerister · ae379bd1
      bors 提交于
      Move PROFQ_CHAN to a Session field
      
      r? @michaelwoerister
      ae379bd1