1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Another entry

llvm-svn: 28356
This commit is contained in:
Evan Cheng 2006-05-17 19:05:31 +00:00
parent 477732bab9
commit b84a79a336

View File

@ -1171,3 +1171,15 @@ _test:
ret
or use pxor (to make a zero vector) and shuffle (to insert it).
//===---------------------------------------------------------------------===//
Bad codegen:
char foo(int x) { return x; }
_foo:
movl 4(%esp), %eax
shll $24, %eax
sarl $24, %eax
ret