1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

fix a typo

llvm-svn: 169345
This commit is contained in:
Shuxin Yang 2012-12-05 00:33:16 +00:00
parent c0bd8f95ce
commit b226a9f2b3

View File

@ -72,7 +72,7 @@ test5:
; only bits from X or Y are demanded.
; e.g. the "x ^ 1234" can be optimized into x in the context of "t >> 16".
; Put in other word, t >> 16 -> x >> 16.
; unsigned foo(unsigned x) { nsigned t = x ^ 1234; ; return (t >> 16) + t;}
; unsigned foo(unsigned x) { unsigned t = x ^ 1234; ; return (t >> 16) + t;}
define i32 @test6(i32 %x) {
%xor = xor i32 %x, 1234
%shr = lshr i32 %xor, 16