Update comment in testcase

llvm-svn: 297170
diff --git a/llvm/test/Verifier/fnarg-nodebug.ll b/llvm/test/Verifier/fnarg-nodebug.ll
index ac59862..f0f65fb 100644
--- a/llvm/test/Verifier/fnarg-nodebug.ll
+++ b/llvm/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"