Skip to content
  1. Feb 23, 2014
    • Saleem Abdulrasool's avatar
      ARM IAS: support .short and .hword · 38976512
      Saleem Abdulrasool authored
      This adds support for the .short and its alias .hword for adding literal values
      into the object file.  This is similar to the .word directive, however, rather
      than inserting a value of 4 bytes, adds a 2-byte value.
      
      llvm-svn: 201968
      38976512
    • NAKAMURA Takumi's avatar
      [CMake] add_lld_library: link_system_libs is not needed any more. LLVMSupport... · b31e0300
      NAKAMURA Takumi authored
      [CMake] add_lld_library: link_system_libs is not needed any more. LLVMSupport may provide dependencies to system libs.
      
      llvm-svn: 201967
      b31e0300
    • Michael Gottesman's avatar
      [python-bindings] Remove some cruft that snuck in. · c6886e7c
      Michael Gottesman authored
      llvm-svn: 201966
      c6886e7c
    • Alp Toker's avatar
      Fix crash when both ExpectAndConsume and ConsumeAnyToken emit diagnostics · f2b6e793
      Alp Toker authored
      The DiagnosticBuilder's lifetime in parser typo recovery was overlapping with
      the subsequent consume which can itself emit PP diagnostics.
      
      Patch by Olivier Goffart!
      
      llvm-svn: 201965
      f2b6e793
    • Saleem Abdulrasool's avatar
      Release Notes: document -f{,no-}integrate-as · 3aa840e6
      Saleem Abdulrasool authored
      Now that the integrated assembler is considered a first class feature of the
      compiler and has a proper feature flag, document the change in the compiler
      flags.  Ensure that we indicate that the legacy flags are still available, but,
      encourage users to switch to the feature flags.
      
      llvm-svn: 201964
      3aa840e6
    • Saleem Abdulrasool's avatar
      clang: add -f{no-,}integrate-as as consistent parameters · cfeb90d7
      Saleem Abdulrasool authored
      The integrated assembler is a feature.  This makes the new flags the default
      option, and the previous versions aliases.  Ideally, at some point the aliases
      would be entirely removed.
      
      llvm-svn: 201963
      cfeb90d7
    • Bob Wilson's avatar
      Remove support for the QA_OVERRIDE_GCC3_OPTIONS environment variable. · 39265b96
      Bob Wilson authored
      In r199283 I switched the name of this variable to CCC_OVERRIDE_OPTIONS, but
      I kept some code to continue recognizing the old name temporarily. As far as
      I know, the only use of this was for some internal testing at Apple, and we've
      now switched to use the new name. If anyone else is still using this and needs
      more time to switch names, I guess we'll find out! <rdar://problem/15821425>
      
      llvm-svn: 201962
      39265b96
    • Saleem Abdulrasool's avatar
      clang: forward -no-integrated-as from the driver · 42e4b599
      Saleem Abdulrasool authored
      Forward the -no-integrated-as option to -cc1 rather than simply invoking the
      appropriate tool.  This is useful since this option has been overloaded to
      permit disabling of parsing inline assembly at the MC layer.
      
      This re-applies the previous version of the patch with a renaming of the driver
      option to the public name rather than the internal name (-target vs -triple).
      The actual failure is fixed separately of an overly aggressive negative pattern
      match in the MIPS driver tests.  It also fixes the incorrect test for targets
      that have the integrated assembler disabled by default.
      
      llvm-svn: 201960
      42e4b599
    • Saleem Abdulrasool's avatar
      test: fix MIPS driver tests · a56fc7c4
      Saleem Abdulrasool authored
      The tests attempt to validate the invocation of the assembler program with the
      integrated assembler disabled.  However, the match pattern for the negative
      tests are lax and will match both the driver invocation as well as the assembler
      invocation.  Make the tests more strict by ensuring that we only match the
      assembler invocation.
      
      llvm-svn: 201959
      a56fc7c4
  2. Feb 22, 2014
Loading