summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target
diff options
context:
space:
mode:
authorRichard Trieu <rtrieu@google.com>2011-09-10 01:26:21 +0000
committerRichard Trieu <rtrieu@google.com>2011-09-10 01:26:21 +0000
commitd9917bef6ca582f1ca3def692c1c21b296666bd2 (patch)
treeaad714ea7323cc95f0059f75f94d648e920b232e /llvm/lib/Target
parentc7868bf064f915582a1064b532c1c5fa745d92ba (diff)
downloadbcm5719-llvm-d9917bef6ca582f1ca3def692c1c21b296666bd2.tar.gz
bcm5719-llvm-d9917bef6ca582f1ca3def692c1c21b296666bd2.zip
Fixed an assert from:
assert("not implemented for target shuffle node"); to: assert(0 && "not implemented for target shuffle node"); This causes a test failure in CodeGen/X86/palignr.ll which has been marked as XFAIL for the time being. Test failure filed at PR10901. llvm-svn: 139454
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r--llvm/lib/Target/X86/X86ISelLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index 0d658492e5d..577f57acded 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -4616,7 +4616,7 @@ static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
ShuffleMask);
break;
default:
- assert("not implemented for target shuffle node");
+ assert(0 && "not implemented for target shuffle node");
return SDValue();
}
OpenPOWER on IntegriCloud