diff options
author | Eugene Leviant <eleviant@accesssoftek.com> | 2019-02-11 10:12:19 +0000 |
---|---|---|
committer | Eugene Leviant <eleviant@accesssoftek.com> | 2019-02-11 10:12:19 +0000 |
commit | 6aaa8bfef8d817edbe6ac710e71bcff0b57b64be (patch) | |
tree | 16535c7e477b3ca32ee6a8d78c195589991e350b | |
parent | f68b6cbae27c001fe9c121b15e02c461078868f2 (diff) | |
download | bcm5719-llvm-6aaa8bfef8d817edbe6ac710e71bcff0b57b64be.tar.gz bcm5719-llvm-6aaa8bfef8d817edbe6ac710e71bcff0b57b64be.zip |
Attempt to fix buildbot after r353679
llvm-svn: 353681
-rw-r--r-- | llvm/include/llvm/Support/Error.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/Error.h b/llvm/include/llvm/Support/Error.h index a9f131f1ef6..a7cf2d56a14 100644 --- a/llvm/include/llvm/Support/Error.h +++ b/llvm/include/llvm/Support/Error.h @@ -1195,7 +1195,7 @@ public: private: FileError(const Twine &F, std::unique_ptr<ErrorInfoBase> E) { assert(E && "Cannot create FileError from Error success value."); - assert(!F.empty() && + assert(!F.isEmpty() && "The file name provided to FileError must not be empty."); FileName = F.str(); Err = std::move(E); |