projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
decd081
)
Add another testcase that may eventually be handled...
author
Chris Lattner
<sabre@nondot.org>
Wed, 5 Mar 2003 22:50:55 +0000
(22:50 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Wed, 5 Mar 2003 22:50:55 +0000
(22:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5705
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/Transforms/InstCombine/cast-set.ll
patch
|
blob
|
history
diff --git
a/test/Transforms/InstCombine/cast-set.ll
b/test/Transforms/InstCombine/cast-set.ll
index 7c392d329b5ddf8afb866944b56f1f7befda0f0d..fb634f893e498564ba5b6804203279a2ade91642 100644
(file)
--- a/
test/Transforms/InstCombine/cast-set.ll
+++ b/
test/Transforms/InstCombine/cast-set.ll
@@
-31,3
+31,10
@@
bool %test3(int %A, int %B) {
ret bool %cst222
}
+int %test4(int %A) {
+ %B = cast int %A to uint
+ %C = shl uint %B, ubyte 1
+ %D = cast uint %C to int
+ ret int %D
+}
+