1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00
llvm-mirror/include/llvm/TableGen
Richard Trieu eeb1a667f6 Fix broken asserts that never fire.
Change assert("text") to assert(0 && "text").  The first case is a const char *
to bool conversion, which always evaluates to true, never triggering the
assert.  The second case will always trigger the assert.

llvm-svn: 185227
2013-06-28 21:54:25 +00:00
..
Error.h Make sure TableGen exits with an error code after printing errors. 2013-03-20 20:43:11 +00:00
Main.h Move misplaced comment. 2012-10-09 01:47:16 +00:00
Record.h Fix broken asserts that never fire. 2013-06-28 21:54:25 +00:00
StringMatcher.h Fix include guards so they exactly match file names. 2013-01-10 00:45:19 +00:00
TableGenBackend.h