diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-04-08 01:19:25 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-04-08 01:19:25 +0000 | 
| commit | aa3185f12e65ca65cfbd1b64f5e023227a933718 (patch) | |
| tree | 17953e8a9421658ccc4c58fb52292385b2286444 /llvm/lib/CodeGen | |
| parent | 17bd60588c2c2ccf704f705953b60308c0378410 (diff) | |
| download | bcm5719-llvm-aa3185f12e65ca65cfbd1b64f5e023227a933718.tar.gz bcm5719-llvm-aa3185f12e65ca65cfbd1b64f5e023227a933718.zip | |
Stub out shufflevector
llvm-svn: 27514
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 4eb33c163da..abdfc4afb60 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -516,6 +516,7 @@ public:    void visitExtractElement(User &I);    void visitInsertElement(User &I); +  void visitShuffleVector(User &I) { assert(0 && "ShuffleVector not impl!"); }    void visitGetElementPtr(User &I);    void visitCast(User &I); | 

