From 4c63ce3d23fba1df062c2ab0537325a21517da6e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 11 Mar 2002 23:28:11 +0000 Subject: [PATCH] New testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1863 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../InstCombine/2002-03-11-InstCombineHang.ll | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test/Transforms/InstCombine/2002-03-11-InstCombineHang.ll diff --git a/test/Transforms/InstCombine/2002-03-11-InstCombineHang.ll b/test/Transforms/InstCombine/2002-03-11-InstCombineHang.ll new file mode 100644 index 00000000000..86dacf77f56 --- /dev/null +++ b/test/Transforms/InstCombine/2002-03-11-InstCombineHang.ll @@ -0,0 +1,11 @@ +; This testcase causes instcombine to hang. +; +; RUN: as < %s | opt -instcombine + +implementation + +void "test"(int %X) +begin + %reg117 = add int %X, 0 + ret void +end