From: Adrian Prantl Date: Tue, 7 Mar 2017 17:55:36 +0000 (+0000) Subject: Update comment in testcase X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=601357f68122cf2adc9e70b839c832a812b7f543;p=llvm Update comment in testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297170 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Verifier/fnarg-nodebug.ll b/test/Verifier/fnarg-nodebug.ll index ac598620709..f0f65fb382a 100644 --- a/test/Verifier/fnarg-nodebug.ll +++ b/test/Verifier/fnarg-nodebug.ll @@ -1,11 +1,12 @@ ; RUN: llvm-as < %s -o %t ; RUN: llvm-dis < %t -o - | FileCheck %s +; Testcase from PR32042. ; Created at -02 from: ; bool alpha(int); ; bool bravo(int charlie) { return (alpha(charlie)); } ; static int delta(int charlie) { return charlie + 1; } ; __attribute__((nodebug)) bool echo(int foxtrot) { -; return (bravo(delta(foxtrot))); +; return bravo(delta(foxtrot)); ; } source_filename = "t.c"