| Evan Cheng | 0d55159 | 2009-03-31 19:39:24 +0000 | [diff] [blame] | 1 | ; RUN: llvm-as < %s | llc -march=x86 |
| 2 | ; RUN: llvm-as < %s | llc -march=x86-64 | ||||
| 3 | |||||
| 4 | define void @t(i256 %x, i256 %a, i256* nocapture %r) nounwind readnone { | ||||
| 5 | entry: | ||||
| 6 | %0 = ashr i256 %x, %a | ||||
| 7 | store i256 %0, i256* %r | ||||
| 8 | ret void | ||||
| 9 | } | ||||