Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove \brief commands from doxygen comments. | Adrian Prantl | 2018-05-01 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | We've been running doxygen with the autobrief option for a couple of years now. This makes the \brief markers into our comments redundant. Since they are a visual distraction and we don't want to encourage more \brief markers in new code either, this patch removes them all. Patch produced by for i in $(git grep -l '\\brief'); do perl -pi -e 's/\\brief //g' $i & done Differential Revision: https://reviews.llvm.org/D46290 llvm-svn: 331272 | ||||
* | Try to fix WebAssembly build after r318352 | Reid Kleckner | 2017-11-16 | 1 | -2/+2 |
| | | | | llvm-svn: 318355 | ||||
* | Fix WebAssembly build after r283702. | Daniel Jasper | 2016-10-10 | 1 | -2/+8 |
| | | | | llvm-svn: 283723 | ||||
* | Move the global variables representing each Target behind accessor function | Mehdi Amini | 2016-10-09 | 1 | -4/+4 |
| | | | | | | | | This avoids "static initialization order fiasco" Differential Revision: https://reviews.llvm.org/D25412 llvm-svn: 283702 | ||||
* | Remove autoconf support | Chris Bieneman | 2016-01-26 | 1 | -15/+0 |
| | | | | | | | | | | | | | | | | Summary: This patch is provided in preparation for removing autoconf on 1/26. The proposal to remove autoconf on 1/26 was discussed on the llvm-dev thread here: http://lists.llvm.org/pipermail/llvm-dev/2016-January/093875.html "I felt a great disturbance in the [build system], as if millions of [makefiles] suddenly cried out in terror and were suddenly silenced. I fear something [amazing] has happened." - Obi Wan Kenobi Reviewers: chandlerc, grosbach, bob.wilson, tstellarAMD, echristo, whitequark Subscribers: chfast, simoncook, emaste, jholewinski, tberghammer, jfb, danalbert, srhines, arsenm, dschuff, jyknight, dsanders, joker.eph, llvm-commits Differential Revision: http://reviews.llvm.org/D16471 llvm-svn: 258861 | ||||
* | [WebAssembly] Define separate Target instances for 32-bit and 64-bit. | Dan Gohman | 2015-07-01 | 1 | -3/+4 |
| | | | | llvm-svn: 241193 | ||||
* | [WebAssembly] Initial WebAssembly backend | Dan Gohman | 2015-06-29 | 4 | -0/+74 |
This WebAssembly backend is just a skeleton at this time and is not yet functional. llvm-svn: 241022 |