From a92dabb25994a27197bde414aae8d1f6b05727b2 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 12 Dec 2005 22:27:22 +0000 Subject: [PATCH] Testcase for a problem that reid ran into git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24676 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/Generic/2005-12-12-ExpandSextInreg.ll | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/CodeGen/Generic/2005-12-12-ExpandSextInreg.ll diff --git a/test/CodeGen/Generic/2005-12-12-ExpandSextInreg.ll b/test/CodeGen/Generic/2005-12-12-ExpandSextInreg.ll new file mode 100644 index 00000000000..20ef2d9f063 --- /dev/null +++ b/test/CodeGen/Generic/2005-12-12-ExpandSextInreg.ll @@ -0,0 +1,7 @@ +; RUN: llvm-as < %s | llc + +long %test(long %A) { + %B = cast long %A to sbyte + %C = cast sbyte %B to long + ret long %C +} -- 2.34.1