Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: src/IceInstARM32.cpp

Issue 1654803003: Improve readability of error messages for VADD in ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceAssemblerARM32.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInstARM32.cpp
diff --git a/src/IceInstARM32.cpp b/src/IceInstARM32.cpp
index db412a8b8aa89ed278018c6cd9f7913201bf4e04..23216a03455f0d5ef2bbf79e79b2e121ac57ce50 100644
--- a/src/IceInstARM32.cpp
+++ b/src/IceInstARM32.cpp
@@ -621,8 +621,8 @@ template <> void InstARM32Vadd::emitIAS(const Cfg *Func) const {
case IceType_v8i1:
case IceType_v16i1:
case IceType_NUM:
- llvm::report_fatal_error(std::string("Vadd not defined on type ") +
- typeString(DestTy));
+ llvm::report_fatal_error("Vadd not defined on type " +
+ std::string(typeString(DestTy)));
break;
case IceType_v16i8:
case IceType_v8i16:
« no previous file with comments | « src/IceAssemblerARM32.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698