diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:41:05 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:41:05 +0000 | 
| commit | 01095a5d43bbfde13731688ddcf6048ebb8b7721 (patch) | |
| tree | 4def12e759965de927d963ac65840d663ef9d1ea /lib/CodeGen/StackMaps.cpp | |
| parent | f0f4822ed4b66e3579e92a89f368f8fb860e218e (diff) | |
Notes
Diffstat (limited to 'lib/CodeGen/StackMaps.cpp')
| -rw-r--r-- | lib/CodeGen/StackMaps.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/StackMaps.cpp b/lib/CodeGen/StackMaps.cpp index b3cd8b3d80bb..d91bb8066aed 100644 --- a/lib/CodeGen/StackMaps.cpp +++ b/lib/CodeGen/StackMaps.cpp @@ -520,9 +520,9 @@ void StackMaps::emitCallsiteEntries(MCStreamer &OS) {  void StackMaps::serializeToStackMapSection() {    (void)WSMP;    // Bail out if there's no stack map data. -  assert((!CSInfos.empty() || (CSInfos.empty() && ConstPool.empty())) && +  assert((!CSInfos.empty() || ConstPool.empty()) &&           "Expected empty constant pool too!"); -  assert((!CSInfos.empty() || (CSInfos.empty() && FnStackSize.empty())) && +  assert((!CSInfos.empty() || FnStackSize.empty()) &&           "Expected empty function record too!");    if (CSInfos.empty())      return;  | 
