diff options
author | Devang Patel <dpatel@apple.com> | 2008-02-20 18:37:40 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-02-20 18:37:40 +0000 |
commit | c40a84a87727608bbc5c68b3bf5c6d96fb22aa00 (patch) | |
tree | 9bd2361a7e981172c289264741622e48b721104a /lib/CodeGen | |
parent | 85eab709cad923740aaae0dc22a3b12b2cd782d3 (diff) | |
download | external_llvm-c40a84a87727608bbc5c68b3bf5c6d96fb22aa00.tar.gz external_llvm-c40a84a87727608bbc5c68b3bf5c6d96fb22aa00.tar.bz2 external_llvm-c40a84a87727608bbc5c68b3bf5c6d96fb22aa00.zip |
assert is more effective reminder then FIXME tag for unimplemented features.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47388 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 001c9f6c53..b5e39a11d3 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -609,7 +609,7 @@ public: void visitMemIntrinsic(CallInst &I, unsigned Op); void visitGetResult(GetResultInst &I) { - // FIXME + assert (0 && "getresult unimplemented"); } void visitUserOp1(Instruction &I) { |