Update comment in testcase

llvm-svn: 297170
This commit is contained in:
Adrian Prantl 2017-03-07 17:55:36 +00:00
parent a0b85963ba
commit 654975b5a6
1 changed files with 2 additions and 1 deletions

View File

@ -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"