mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
e7eed82209
call, we should treat "i64 zext" as the start of a constant expr, but "i64 0 zext" as an argument with an obsolete attribute on it (this form is already tested by test/Assembler/2007-07-30-AutoUpgradeZextSext.ll). Make the autoupgrade logic more discerning to avoid treating "i64 zext" as an old-style attribute, causing us to reject a valid constant expr. This fixes PR3876. llvm-svn: 67682
12 lines
253 B
LLVM
12 lines
253 B
LLVM
; RUN: llvm-as < %s | llvm-dis
|
|
; PR3876
|
|
@gdtr = external global [0 x i8]
|
|
|
|
define void @test() {
|
|
call zeroext i1 @paging_map(i64 zext (i32 and (i32 ptrtoint ([0 x i8]* @gdtr to i32), i32 -4096) to i64))
|
|
ret void
|
|
}
|
|
|
|
declare zeroext i1 @paging_map(i64)
|
|
|