From 86ca0c1f8bc3bb7cc73f67f2821c53fa1f5d9130 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 28 Feb 2003 19:13:58 +0000 Subject: [PATCH] New testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5672 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../LICM/2003-02-28-PromoteDifferentType.ll | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/Transforms/LICM/2003-02-28-PromoteDifferentType.ll diff --git a/test/Transforms/LICM/2003-02-28-PromoteDifferentType.ll b/test/Transforms/LICM/2003-02-28-PromoteDifferentType.ll new file mode 100644 index 00000000000..a0ba69d849d --- /dev/null +++ b/test/Transforms/LICM/2003-02-28-PromoteDifferentType.ll @@ -0,0 +1,15 @@ +; Test that hoisting is disabled for pointers of different types... +; +; RUN: as < %s | opt -licm + +void %test(int* %P) { + br label %Loop +Loop: + store int 5, int* %P + %P2 = cast int* %P to sbyte* + store sbyte 4, sbyte* %P2 + br bool true, label %loop, label %Out +Out: + ret void +} + -- 2.50.1