mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
1d3d230861
Make the AsmParser auto-upgrade the old zext and sext keywords for parameter attributes and handle the end-of-line ambiguity. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40610 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
282 B
LLVM
13 lines
282 B
LLVM
; Test that upgrading zext/sext attributes to zeroext and signext
|
|
; works correctly.
|
|
; PR1553
|
|
; RUN: llvm-as < %s > /dev/null
|
|
|
|
define i32 @bar() {
|
|
%t = call i8 @foo( i8 10 sext ) zext
|
|
%x = zext i8 %t to i32
|
|
ret i32 %x
|
|
}
|
|
|
|
declare i8 @foo(i8 signext ) zeroext
|