Skip to content
  1. Oct 04, 2011
  2. Oct 03, 2011
    • Anna Zaks's avatar
      [analyzer] In UndefBranchChecker, use a node generator which does not create... · 892427e2
      Anna Zaks authored
      [analyzer] In UndefBranchChecker, use a node generator which does not create an edge/branching. (ExprEngine should be in charge of generating edges. The checkers should examine the condition and generate PostCondition node if needed.)
      
      llvm-svn: 141034
      892427e2
    • Anna Zaks's avatar
      [analyzer] Cleanup in UndefBranchChecker: · c42197d0
      Anna Zaks authored
        - Remove unused FindUndefExpr::ProgramStateManager.
        - The Condition parameter of the callback is the terminator of the block, no need to retrieve it again.
      
      llvm-svn: 141027
      c42197d0
    • Abramo Bagnara's avatar
      Fixed source range for template implicit instantiations. · fd3a455a
      Abramo Bagnara authored
      llvm-svn: 141018
      fd3a455a
    • Abramo Bagnara's avatar
      Fixed exapnsion range for # and ##. · e398e606
      Abramo Bagnara authored
      llvm-svn: 141012
      e398e606
    • Chandler Carruth's avatar
      Refactor the detection of a GCC installation into a helper class. This · 3f0c8f79
      Chandler Carruth authored
      is designed to allow the detection to record more rich information about
      the installation than just a single path.
      
      Mostly, the functionality remains the same. This is primarily
      a factoring change. However, the new factoring immediately fixes one
      issue where on ubuntu we didn't walk up enough layers to reach the
      parent lib path. I'll have a test tree for that once I finish making the
      Ubuntu tree work reasonably.
      
      llvm-svn: 141011
      3f0c8f79
    • Fariborz Jahanian's avatar
      objc++: Accessing explicit property of reference type need · 082a6a14
      Fariborz Jahanian authored
      not bind to a temporary. Fixes //rdar://10188258
      
      llvm-svn: 141009
      082a6a14
    • Justin Holewinski's avatar
      PTX: Add some basic support for OpenCL address spaces · 794c205e
      Justin Holewinski authored
      llvm-svn: 141008
      794c205e
    • Matt Beaumont-Gay's avatar
      Don't crash when trying to emit too many fixits. Also, keep some constants in · e359bc09
      Matt Beaumont-Gay authored
      sync between DiagnosticsEngine and PartialDiagnostic.
      
      llvm-svn: 141006
      e359bc09
    • Rafael Espindola's avatar
      Propagate __attribute__((returns_twice)) from C to IL. · 70107f98
      Rafael Espindola authored
      llvm-svn: 141002
      70107f98
    • Chandler Carruth's avatar
      Test a multilib setup on a 64-bit host. This is the far more common · adf23a40
      Chandler Carruth authored
      configuration, although the test still stubs out more directories than
      are necessary or common in order to exercise all of the lookup paths
      observed with upstream GCC.
      
      This finishes testing the distribution-independent and
      GCC-installation-independent parts of the library path search logic.
      More testing is still needed for the triple detection, GCC-installation
      detection, and handling distributions with unusual configurations.
      
      llvm-svn: 141000
      adf23a40
    • Chandler Carruth's avatar
      Enable generic multilib support on 32bit hosts. Previously this was only · 2356b2c3
      Chandler Carruth authored
      enabled for debian hosts, which is quite odd. I think all restriction on
      when Clang attempts to use a multilib installation should go away. Clang
      is fundamentally a cross compiler. It behaves more like GCC when built
      as a cross compiler, and so it should just use multilib installs when
      they are present on the system. However, there is a very specific
      exemption for Exherbo, which I can't test on, so I'm leaving that in
      place.
      
      With this, check in a generic test tree for multilib on a 32-bit host.
      This stubs out many directories that most distributions don't use but
      that uptsream GCC supports. This is intended to be an agnostic test that
      the driver behaves properly compared with the GCC driver it aims for
      compatibility with.
      
      Also, fix a bug in the driver that this testing exposed (see!) where it
      was incorrectly testing the target architecture rather than the host
      architecture.
      
      If anyone is having trouble with the tree-structure stubs I'm creating
      to test this, let me know and I can revisit the design. I chose this
      over (for example) a tar-ball in order to make tests run faster at the
      small, hopefully amortized VCS cost.
      
      llvm-svn: 140999
      2356b2c3
    • Chandler Carruth's avatar
      Relax an assertion here a bit. This doesn't really matter, as we won't · 35cd702e
      Chandler Carruth authored
      include *any* path on crtbegin.o unless we actually find such a file via
      one of the search paths. We still strictly check the search paths right
      after this, so we'll catch any issues there.
      
      The reason for this is that the driver does some normalization of the
      path on the actual object file, and this changes the textual format of
      the string on Windows. It no longer matches the textual format of the
      sysroot flag.
      
      llvm-svn: 140998
      35cd702e
    • Chandler Carruth's avatar
      Test that we include a GCC-triple-prefixed tree. While I don't know of · 2c5e91e2
      Chandler Carruth authored
      any distros that use this, building a multilib GCC from mainline will
      install linker scripts here.
      
      llvm-svn: 140996
      2c5e91e2
    • Chandler Carruth's avatar
      Teach the logic for locating an installed GCC about the system root. · 5fdc7cba
      Chandler Carruth authored
      This requires fixing a latent bug -- if we used the default host triple
      instead of an autodetected triple to locate GCC's installation, we
      didn't go back and fix the GCC triple. Correct that with a pile of
      hacks. This entire routine needs a major refactoring which I'm saving
      for a subsequent commit. Essentially, the detection of the GCC triple
      should be hoisted into the same routine as we locate the GCC
      installation: the first is intrinsically tied to the latter. Then the
      routine will just return the triple and base directory.
      
      Also start to bring the rest of the library search path logic under
      test, including locating crtbegin.o. Still need to test the multilib and
      other behaviors, but there are also bugs in the way of that.
      
      llvm-svn: 140995
      5fdc7cba
Loading