blob: 07449e45a61cdf6194edc190a34136dc3cade093 [file] [log] [blame]
Evan Chengce531a42006-02-28 23:57:45 +00001; RUN: llvm-as < %s | llc -march=x86 | not grep 'leal'
2
3%x = external global int
4
5int %test() {
6 %tmp.0 = load int* %x
7 %tmp.1 = shl int %tmp.0, ubyte 1
8 ret int %tmp.1
9}