From: Duncan P. N. Exon Smith Date: Tue, 8 Apr 2014 17:07:44 +0000 (+0000) Subject: Verifier: Give the right message for bad atomic loads X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=bd382db782f029ef6cc40bf1cb425c441fc21ab1;p=oota-llvm.git Verifier: Give the right message for bad atomic loads Talk about load (not store) on an invalid atomic load. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205777 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/IR/Verifier.cpp b/lib/IR/Verifier.cpp index ddda93cdd13..9cd1b52deec 100644 --- a/lib/IR/Verifier.cpp +++ b/lib/IR/Verifier.cpp @@ -1730,11 +1730,11 @@ void Verifier::visitLoadInst(LoadInst &LI) { "Atomic load must specify explicit alignment", &LI); if (!ElTy->isPointerTy()) { Assert2(ElTy->isIntegerTy(), - "atomic store operand must have integer type!", + "atomic load operand must have integer type!", &LI, ElTy); unsigned Size = ElTy->getPrimitiveSizeInBits(); Assert2(Size >= 8 && !(Size & (Size - 1)), - "atomic store operand must be power-of-two byte-sized integer", + "atomic load operand must be power-of-two byte-sized integer", &LI, ElTy); } } else {