aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-06-23 19:59:17 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-06-23 19:59:17 +0000
commit508a41b45038b2219059a7ec797692b0539bdd59 (patch)
tree8013961d3d0c5ce326e7e165a067a2cf05eaad0d
parent1440c2a96ecca90325fa9da13f852ae1788ea4ec (diff)
New test case for C Writer regression found in 256.bzip2
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6868 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CBackend/2003-06-23-PromotedExprs.llx16
-rw-r--r--test/CodeGen/CBackend/2003-06-23-PromotedExprs.llx16
2 files changed, 32 insertions, 0 deletions
diff --git a/test/CBackend/2003-06-23-PromotedExprs.llx b/test/CBackend/2003-06-23-PromotedExprs.llx
new file mode 100644
index 0000000000..0723d6baac
--- /dev/null
+++ b/test/CBackend/2003-06-23-PromotedExprs.llx
@@ -0,0 +1,16 @@
+
+; RUN: as < %s | dis -c > Output/%s.cbe.c
+; RUN: gcc -B/usr/bin/ Output/%s.cbe.c -o Output/%s.cbe
+; RUN: Output/%s.cbe
+
+bool %doTest(ubyte %x) {
+ %dec.0 = add ubyte %x, 255
+ %tmp.1001 = cast ubyte %dec.0 to bool
+ ret bool %tmp.1001
+}
+
+int %main () {
+ %result = call bool %doTest(ubyte 1)
+ %p = cast bool %result to int
+ ret int %p
+}
diff --git a/test/CodeGen/CBackend/2003-06-23-PromotedExprs.llx b/test/CodeGen/CBackend/2003-06-23-PromotedExprs.llx
new file mode 100644
index 0000000000..0723d6baac
--- /dev/null
+++ b/test/CodeGen/CBackend/2003-06-23-PromotedExprs.llx
@@ -0,0 +1,16 @@
+
+; RUN: as < %s | dis -c > Output/%s.cbe.c
+; RUN: gcc -B/usr/bin/ Output/%s.cbe.c -o Output/%s.cbe
+; RUN: Output/%s.cbe
+
+bool %doTest(ubyte %x) {
+ %dec.0 = add ubyte %x, 255
+ %tmp.1001 = cast ubyte %dec.0 to bool
+ ret bool %tmp.1001
+}
+
+int %main () {
+ %result = call bool %doTest(ubyte 1)
+ %p = cast bool %result to int
+ ret int %p
+}