[llvm-commits] [dragonegg] r92722 - /dragonegg/trunk/x86/llvm-target.cpp
Duncan Sands
baldrick at free.fr
Tue Jan 5 00:50:19 PST 2010
Author: baldrick
Date: Tue Jan 5 02:50:18 2010
New Revision: 92722
URL: http://llvm.org/viewvc/llvm-project?rev=92722&view=rev
Log:
Tweak the port of llvm-gcc commit 90200 so that it builds
(FnCode is not available).
Modified:
dragonegg/trunk/x86/llvm-target.cpp
Modified: dragonegg/trunk/x86/llvm-target.cpp
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/x86/llvm-target.cpp?rev=92722&r1=92721&r2=92722&view=diff
==============================================================================
--- dragonegg/trunk/x86/llvm-target.cpp (original)
+++ dragonegg/trunk/x86/llvm-target.cpp Tue Jan 5 02:50:18 2010
@@ -751,6 +751,7 @@
}
bool flip = false;
+ Intrinsic::ID IntrID;
unsigned PredCode;
goto *Handler;
@@ -1249,12 +1250,15 @@
return true;
}
IX86_BUILTIN_PALIGNR:
- IX86_BUILTIN_PALIGNR128: {
- if (ConstantInt *Elt = dyn_cast<ConstantInt>(Ops[2])) {
+ IntrID = Intrinsic::x86_ssse3_palign_r;
+ goto PALIGNR;
+ IX86_BUILTIN_PALIGNR128:
+ IntrID = Intrinsic::x86_ssse3_palign_r_128;
+ goto PALIGNR;
+ PALIGNR:
+ if (isa<ConstantInt>(Ops[2])) {
Function *palignr =
- Intrinsic::getDeclaration(TheModule, FnCode == IX86_BUILTIN_PALIGNR ?
- Intrinsic::x86_ssse3_palign_r :
- Intrinsic::x86_ssse3_palign_r_128);
+ Intrinsic::getDeclaration(TheModule, IntrID);
Value *Op2 = Builder.CreateTrunc(Ops[2], Type::getInt8Ty(Context));
Value *CallOps[3] = { Ops[0], Ops[1], Op2 };
Result = Builder.CreateCall(palignr, CallOps, CallOps+3);
@@ -1264,7 +1268,6 @@
Result = Ops[0];
return true;
}
- }
}
/* These are defined in i386.c */
More information about the llvm-commits
mailing list