aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Generic/sched.ll
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2002-07-10 21:54:05 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2002-07-10 21:54:05 +0000
commita7a1c7e9719a4358521035be9965603eb1f429a6 (patch)
tree2e633b416dd031f4a24eb869c9eedc39a4f61708 /test/CodeGen/Generic/sched.ll
parent975f6d4f4477a68f9b322843a1bf2ebc24214b3a (diff)
downloadexternal_llvm-a7a1c7e9719a4358521035be9965603eb1f429a6.zip
external_llvm-a7a1c7e9719a4358521035be9965603eb1f429a6.tar.gz
external_llvm-a7a1c7e9719a4358521035be9965603eb1f429a6.tar.bz2
Some of these are feature tests, not regression tests.
This directory needs to be reorganized and some of the tests need changes to make them executable. Also comments would help... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2865 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Generic/sched.ll')
-rw-r--r--test/CodeGen/Generic/sched.ll30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/CodeGen/Generic/sched.ll b/test/CodeGen/Generic/sched.ll
new file mode 100644
index 0000000..b8de02d
--- /dev/null
+++ b/test/CodeGen/Generic/sched.ll
@@ -0,0 +1,30 @@
+implementation
+declare int "printf"(sbyte*, int, float)
+
+
+int "testissue"(int %i, float %x, float %y)
+begin
+bb1:
+ %x1 = mul float %x, %y ;; x1
+ %y1 = mul float %y, 0.75 ;; y1
+ %z1 = add float %x1, %y1 ;; z1 = x1 + y1
+
+ %x2 = mul float %x, 0.5 ;; x2
+ %y2 = mul float %y, 0.9 ;; y2
+ %z2 = add float %x2, %y2 ;; z2 = x2 + y2
+
+ %z3 = add float %z1, %z2 ;; z3 = z1 + z2
+
+ %i1 = shl int %i, ubyte 3 ;; i1
+ %j1 = add int %i, 7 ;; j1
+ %m1 = add int %i1, %j1 ;; k1 = i1 + j1
+;; %m1 = div int %k1, 99 ;; m1 = k1 / 99
+
+ %b = setle int %m1, 6 ;; (m1 <= 6)?
+ br bool %b, label %bb1, label %bb2
+
+bb2:
+ %Msg = cast ulong 0 to sbyte *
+ call int %printf(sbyte* %Msg, int %m1, float %z3)
+ ret int 0
+end