aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine/Interpreter/Execution.cpp
Commit message (Expand)AuthorAgeFilesLines
* llvm_report_error already prints "LLVM ERROR:". So stop reporting errors like...Benjamin Kramer2009-08-031-1/+1
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Edwin Török2009-07-141-30/+30
* assert(0) -> LLVM_UNREACHABLE.Edwin Török2009-07-111-3/+3
* Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Edwin Török2009-07-111-30/+30
* remove dead function.Chris Lattner2009-07-091-9/+0
* Get rid of unnecessary global variables.Owen Anderson2009-06-261-6/+1
* Split the Add, Sub, and Mul instruction opcodes into separateDan Gohman2009-06-041-30/+26
* Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands2009-05-091-2/+2
* Use CHAR_BIT instead of hard-coding 8 in several places where itDan Gohman2009-04-011-2/+2
* don't assert and die on out of range (undefined) shifts. This fixesChris Lattner2009-01-161-4/+16
* Rename getABITypeSize to getTypePaddedSize, asDuncan Sands2009-01-121-2/+2
* Large mechanical patch.Devang Patel2008-09-251-2/+2
* s/ParameterAttributes/Attributes/gDevang Patel2008-09-231-1/+0
* Add a new hidden option to the interpreter to cause it to printChris Lattner2008-07-081-0/+8
* fix warnings with assertions disabled.Chris Lattner2008-04-061-21/+6
* Update gcc 4.3 warnings fix patch with recent head changesAnton Korobeynikov2008-02-201-11/+12
* Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov2008-02-201-1/+2
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Add some convenience methods for querying attributes, andDuncan Sands2007-11-281-12/+9
* Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize.Duncan Sands2007-11-011-2/+2
* Fix an assertion abort on sparc. malloc(0) is allowed toGabor Greif2007-10-111-1/+3
* #ifdef out unsafe tracing code, which fixes PR1689Chris Lattner2007-09-211-15/+17
* rename APInt::toString -> toStringUnsigned for symmetry with toStringSigned()Chris Lattner2007-08-231-2/+3
* It's not necessary to do rounding for alloca operations when the requestedDan Gohman2007-07-181-0/+1374