diff options
Diffstat (limited to 'llvm/test/CodeGen/Alpha/ctlz.ll')
| -rw-r--r-- | llvm/test/CodeGen/Alpha/ctlz.ll | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/Alpha/ctlz.ll b/llvm/test/CodeGen/Alpha/ctlz.ll index 0ad014dbf97..fba60227f83 100644 --- a/llvm/test/CodeGen/Alpha/ctlz.ll +++ b/llvm/test/CodeGen/Alpha/ctlz.ll @@ -5,10 +5,11 @@ ; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev56 | not grep -i ctlz ; RUN: llvm-as < %s | llc -march=alpha -mattr=-CIX | not grep -i ctlz -declare i32 @llvm.ctlz.i8(i8) +declare i8 @llvm.ctlz.i8(i8) define i32 @bar(i8 %x) { entry: - %tmp.1 = call i32 @llvm.ctlz.i8( i8 %x ) - ret i32 %tmp.1 + %tmp.1 = call i8 @llvm.ctlz.i8( i8 %x ) + %tmp.2 = sext i8 %tmp.1 to i32 + ret i32 %tmp.2 } |

