aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CodeGen/Alpha/mul5.ll15
1 files changed, 13 insertions, 2 deletions
diff --git a/test/CodeGen/Alpha/mul5.ll b/test/CodeGen/Alpha/mul5.ll
index cb19550dc8..f967c09d42 100644
--- a/test/CodeGen/Alpha/mul5.ll
+++ b/test/CodeGen/Alpha/mul5.ll
@@ -3,9 +3,20 @@
implementation ; Functions:
-ulong %foo(ulong %x) {
+ulong %foo1(ulong %x) {
entry:
- %tmp.1 = mul ulong %x, 5 ; <ulong> [#uses=1]
+ %tmp.1 = mul ulong %x, 9 ; <ulong> [#uses=1]
+ ret ulong %tmp.1
+}
+ulong %foo3(ulong %x) {
+entry:
+ %tmp.1 = mul ulong %x, 259
+ ret ulong %tmp.1
+}
+
+ulong %foo1n(ulong %x) {
+entry:
+ %tmp.1 = mul ulong %x, 511
ret ulong %tmp.1
}