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

Unified Diff: src/IceAssemblerARM32.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 | « no previous file | src/IceInstARM32.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceAssemblerARM32.cpp
diff --git a/src/IceAssemblerARM32.cpp b/src/IceAssemblerARM32.cpp
index 13e2b1a4d09f2bdba2229ae5b89c8ff1ecd6ecb1..22fe5a3c4a6ed080bb93f81cb2acbb70e9f200e2 100644
--- a/src/IceAssemblerARM32.cpp
+++ b/src/IceAssemblerARM32.cpp
@@ -157,9 +157,8 @@ IValueT encodeElmtType(Type ElmtTy) {
case IceType_i64:
return 3;
default:
- llvm::report_fatal_error(
- std::string("SIMD op: Don't understand element type ") +
- typeString(ElmtTy));
+ llvm::report_fatal_error("SIMD op: Don't understand element type " +
+ std::string(typeString(ElmtTy)));
}
}
« no previous file with comments | « no previous file | src/IceInstARM32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698