Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add ability to set OPTIONS for compile | Marshall Clow | 2013-09-09 | 1 | -2/+2 |
| | | | | llvm-svn: 190371 | ||||
* | Demangler update: This now demangles many more (all?) C++11 symbols. ↵ | Howard Hinnant | 2013-06-17 | 1 | -1/+1 |
| | | | | | | Demangler tests updated. llvm-svn: 184097 | ||||
* | fix crash log magic | Nick Kledzik | 2012-03-14 | 1 | -0/+4 |
| | | | | llvm-svn: 152693 | ||||
* | Enable / silence -Wunused-parameter. | Howard Hinnant | 2012-03-09 | 1 | -1/+2 |
| | | | | llvm-svn: 152415 | ||||
* | Enable -Wstrict-aliasing=2 -Wstrict-overflow=4. | Howard Hinnant | 2012-03-08 | 1 | -1/+1 |
| | | | | llvm-svn: 152338 | ||||
* | Enable/silence -Wsign-compare. | Howard Hinnant | 2012-03-08 | 1 | -1/+2 |
| | | | | llvm-svn: 152336 | ||||
* | Enable/silence -Wsign-compare. | Howard Hinnant | 2012-03-08 | 1 | -1/+2 |
| | | | | llvm-svn: 152335 | ||||
* | Enable/silence -Wmissing-field-initializers. | Howard Hinnant | 2012-03-08 | 1 | -1/+1 |
| | | | | llvm-svn: 152334 | ||||
* | Enable/silence -Wunused-variable. | Howard Hinnant | 2012-03-08 | 1 | -1/+2 |
| | | | | llvm-svn: 152329 | ||||
* | Enable/silence -Wconversion. | Howard Hinnant | 2012-03-08 | 1 | -1/+1 |
| | | | | llvm-svn: 152328 | ||||
* | Enable/silence -Wshadow. | Howard Hinnant | 2012-03-08 | 1 | -1/+1 |
| | | | | llvm-svn: 152325 | ||||
* | Enable/silence -Wsign-conversion. | Howard Hinnant | 2012-03-08 | 1 | -1/+2 |
| | | | | llvm-svn: 152323 | ||||
* | Pedantic fix: missing newline at EOF | Dave Zarzycki | 2012-02-22 | 1 | -1/+1 |
| | | | | llvm-svn: 151132 | ||||
* | Pushed optimization back up. Crash disappeared with compiler upgrade. ↵ | Howard Hinnant | 2012-02-03 | 1 | -1/+1 |
| | | | | | | Assumed to be due to compiler bug. llvm-svn: 149702 | ||||
* | There's a crasher I need to track down, occurring at -O0. | Howard Hinnant | 2012-02-02 | 1 | -1/+1 |
| | | | | llvm-svn: 149631 | ||||
* | Back the optimization down from -O3 to -Os. I'm getting an unexplained ↵ | Howard Hinnant | 2012-01-31 | 1 | -1/+1 |
| | | | | | | crasher on -O3. I've looked for a libc++abi bug and can't find one. I'm suspecting clang optimizer bug. But I don't have a good test case at the moment. Deferring investigation on this for now as I will soon be developing more and smaller tests. llvm-svn: 149414 | ||||
* | Add -fstrict-aliasing -Wstrict-aliasing and change optimization from -Os to -O3 | Howard Hinnant | 2012-01-30 | 1 | -2/+2 |
| | | | | llvm-svn: 149250 | ||||
* | By changing all of the throw() specs to noexcept I've been able to compile ↵ | Howard Hinnant | 2012-01-24 | 1 | -0/+90 |
and link all of the source files into a dylib. Prior to this substitution the changed functions were calling __cxa_call_unexpected which isn't implemented yet. However in none of these cases do we actaully want __cxa_call_unexpected to be called. Primative buildit script added. llvm-svn: 148880 |