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

Unified Diff: src/IceTargetLoweringX86Base.h

Issue 1531623007: Add option to force filetype=asm for testing (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix merge ordering issue. 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
Index: src/IceTargetLoweringX86Base.h
diff --git a/src/IceTargetLoweringX86Base.h b/src/IceTargetLoweringX86Base.h
index d39bda09a6b3f57833c94d966757cc48a3a33a09..97114cf62e4f3a946e75acf80d5fcbb7b5519005 100644
--- a/src/IceTargetLoweringX86Base.h
+++ b/src/IceTargetLoweringX86Base.h
@@ -566,8 +566,10 @@ protected:
void _pblendvb(Variable *Dest, Operand *Src0, Operand *Src1) {
Context.insert<typename Traits::Insts::Pblendvb>(Dest, Src0, Src1);
}
- void _pcmpeq(Variable *Dest, Operand *Src0) {
- Context.insert<typename Traits::Insts::Pcmpeq>(Dest, Src0);
+ void _pcmpeq(Variable *Dest, Operand *Src0,
+ Type ArithmeticTypeOverride = IceType_void) {
+ Context.insert<typename Traits::Insts::Pcmpeq>(Dest, Src0,
+ ArithmeticTypeOverride);
}
void _pcmpgt(Variable *Dest, Operand *Src0) {
Context.insert<typename Traits::Insts::Pcmpgt>(Dest, Src0);

Powered by Google App Engine
This is Rietveld 408576698