diff options
| -rw-r--r-- | llvm/test/Verifier/fnarg-nodebug.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/Verifier/fnarg-nodebug.ll b/llvm/test/Verifier/fnarg-nodebug.ll index ac598620709..f0f65fb382a 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" |

