summaryrefslogtreecommitdiff
path: root/include/llvm/TableGen
diff options
context:
space:
mode:
authorRichard Trieu <rtrieu@google.com>2013-07-01 23:42:53 +0000
committerRichard Trieu <rtrieu@google.com>2013-07-01 23:42:53 +0000
commitf801b8fe7ace6306b653f5ea68c378f35e9f2d6d (patch)
treee07feb5682e6f471891947eb93bcf158555c1971 /include/llvm/TableGen
parent7babb052a68a35a7b21906280e67f06502846f9d (diff)
downloadllvm-f801b8fe7ace6306b653f5ea68c378f35e9f2d6d.tar.gz
llvm-f801b8fe7ace6306b653f5ea68c378f35e9f2d6d.tar.bz2
llvm-f801b8fe7ace6306b653f5ea68c378f35e9f2d6d.tar.xz
Fix up some asserts that are within an if statement. This removes the need
for assert(0 && "text"). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185396 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/TableGen')
-rw-r--r--include/llvm/TableGen/Record.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/llvm/TableGen/Record.h b/include/llvm/TableGen/Record.h
index 5bf4f4fc5d..e17cddd9af 100644
--- a/include/llvm/TableGen/Record.h
+++ b/include/llvm/TableGen/Record.h
@@ -1798,10 +1798,12 @@ struct LessRecordRegister {
return LHSPart.second.size() < RHSPart.second.size();
unsigned LHSVal, RHSVal;
- if (LHSPart.second.getAsInteger(10, LHSVal))
- assert(0 && "Unable to convert LHS to integer.");
- if (RHSPart.second.getAsInteger(10, RHSVal))
- assert(0 && "Unable to convert RHS to integer.");
+
+ bool LHSFailed = LHSPart.second.getAsInteger(10, LHSVal); (void)LHSFailed;
+ assert(!LHSFailed && "Unable to convert LHS to integer.");
+ bool RHSFailed = RHSPart.second.getAsInteger(10, RHSVal); (void)RHSFailed;
+ assert(!RHSFailed && "Unable to convert RHS to integer.");
+
if (LHSVal != RHSVal)
return LHSVal < RHSVal;
}