diff options
author | Anders Carlsson <andersca@mac.com> | 2007-12-15 21:23:30 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2007-12-15 21:23:30 +0000 |
commit | 6086bbd1799e22e75561c3d31dc9b923f0508fa5 (patch) | |
tree | 4484b766515323993481f566ddfb3430d50cbcaa /CodeGen/CodeGenFunction.h | |
parent | dee7359a59e6327206ba710cf22f3851e2a0fc48 (diff) |
We now support all MMX intrinsics. SSE intrinsics are next.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45062 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen/CodeGenFunction.h')
-rw-r--r-- | CodeGen/CodeGenFunction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h index d50db7da2c..3b51d43de9 100644 --- a/CodeGen/CodeGenFunction.h +++ b/CodeGen/CodeGenFunction.h @@ -392,7 +392,8 @@ public: llvm::Value *EmitPPCBuiltinExpr(unsigned BuiltinID, const CallExpr *E); llvm::Value *EmitShuffleVector(llvm::Value* V1, llvm::Value *V2, ...); - + llvm::Value *EmitVector(llvm::Value * const *Vals, unsigned NumVals); + llvm::Value *EmitObjCStringLiteral(const ObjCStringLiteral *E); //===--------------------------------------------------------------------===// |