[llvm] r297170 - Update comment in testcase
Adrian Prantl via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 7 09:55:37 PST 2017
Author: adrian
Date: Tue Mar 7 11:55:36 2017
New Revision: 297170
URL: http://llvm.org/viewvc/llvm-project?rev=297170&view=rev
Log:
Update comment in testcase
Modified:
llvm/trunk/test/Verifier/fnarg-nodebug.ll
Modified: llvm/trunk/test/Verifier/fnarg-nodebug.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Verifier/fnarg-nodebug.ll?rev=297170&r1=297169&r2=297170&view=diff
==============================================================================
--- llvm/trunk/test/Verifier/fnarg-nodebug.ll (original)
+++ llvm/trunk/test/Verifier/fnarg-nodebug.ll Tue Mar 7 11:55:36 2017
@@ -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"
More information about the llvm-commits
mailing list