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

Unified Diff: src/compiler/s390/code-generator-s390.cc

Issue 2799863002: [Atomics] use TFJ builtins for atomic add, sub, and, or, and xor (Closed)
Patch Set: [Atomics] use TFJ builtins for atomic add, sub, and, or, and xor Created 3 years, 8 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
Index: src/compiler/s390/code-generator-s390.cc
diff --git a/src/compiler/s390/code-generator-s390.cc b/src/compiler/s390/code-generator-s390.cc
index 26ad332cd6f72bde39766c4216018d19f9681f2b..f46740c9aee03e61b39aad789fa2f8312958be58 100644
--- a/src/compiler/s390/code-generator-s390.cc
+++ b/src/compiler/s390/code-generator-s390.cc
@@ -2429,14 +2429,6 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
__ bne(&do_cs, Label::kNear);
break;
}
- case kAtomicCompareExchangeInt8:
- case kAtomicCompareExchangeUint8:
- case kAtomicCompareExchangeInt16:
- case kAtomicCompareExchangeUint16:
- case kAtomicCompareExchangeWord32: {
- UNREACHABLE();
- break;
- }
default:
UNREACHABLE();
break;

Powered by Google App Engine
This is Rietveld 408576698