From 0e3ae439cfcb8a6843e1916e6a9a83eeb4d12622 Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Sun, 1 Jan 2017 18:20:49 +0000 Subject: [PATCH] [InstCombine] add explanatory comment to test; NFC The test was added at r290797, and a patch to enable the transform is proposed in D28204. llvm-svn: 290798 --- llvm/test/Transforms/InstCombine/call_nonnull_arg.ll | 3 +++ 1 file changed, 3 insertions(+) diff --git a/llvm/test/Transforms/InstCombine/call_nonnull_arg.ll b/llvm/test/Transforms/InstCombine/call_nonnull_arg.ll index adbae0af2832..c502aa05731e 100644 --- a/llvm/test/Transforms/InstCombine/call_nonnull_arg.ll +++ b/llvm/test/Transforms/InstCombine/call_nonnull_arg.ll @@ -31,6 +31,9 @@ dead: unreachable } +; FIXME: The nonnull attribute in the 'bar' declaration could be +; propagated to the parameters of the 'baz' callsite. + declare void @bar(i8*, i8* nonnull) declare void @baz(i8*, i8*)