diff options
author | Rui Ueyama <ruiu@google.com> | 2016-04-19 19:04:03 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2016-04-19 19:04:03 +0000 |
commit | 7a81d674f6bc020d88883c8083630201ecc9a9ca (patch) | |
tree | 6d934fb6be73893846baf49ec2d545dd342e8c73 /lld/ELF/LinkerScript.cpp | |
parent | 960504b91d918590e8bb981229add83e613a9b94 (diff) | |
download | bcm5719-llvm-7a81d674f6bc020d88883c8083630201ecc9a9ca.tar.gz bcm5719-llvm-7a81d674f6bc020d88883c8083630201ecc9a9ca.zip |
Attempt to fix buildbot.
llvm-svn: 266799
Diffstat (limited to 'lld/ELF/LinkerScript.cpp')
-rw-r--r-- | lld/ELF/LinkerScript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp index 0b69beac138..bd239d4e428 100644 --- a/lld/ELF/LinkerScript.cpp +++ b/lld/ELF/LinkerScript.cpp @@ -105,7 +105,7 @@ static uint64_t apply(StringRef Op, uint64_t L, uint64_t R) { } if (Op == "&") return L & R; - llvm_unreachable("unknown operator " + Op); + llvm_unreachable("invalid operator"); return 0; } |