diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-23 16:00:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-23 16:00:59 +0000 |
commit | 599dcb07f7d2d46c07258d9091bfab71f952df73 (patch) | |
tree | c8cf857117a70a0160517ca2ab2c5ec5bfe2fee3 | |
parent | e35a61c70fd5bcb28a3f233f2ddfe32a65777550 (diff) |
document real source of bug
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9413 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/InstCombine/2003-10-23-InstcombineNullFail.ll | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/2003-10-23-InstcombineNullFail.ll b/test/Transforms/InstCombine/2003-10-23-InstcombineNullFail.ll index ec1751cf4a..0123126034 100644 --- a/test/Transforms/InstCombine/2003-10-23-InstcombineNullFail.ll +++ b/test/Transforms/InstCombine/2003-10-23-InstcombineNullFail.ll @@ -1,4 +1,7 @@ ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep false +; +; This actually looks like a constant propagation bug + %X = type { [10 x int], float } implementation |