mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
44d34e9b61
Change the keywords for the zext and sext parameter attributes to be zeroext and signext so they don't conflict with the keywords for the instructions of the same name. This gets around the ambiguity. llvm-svn: 40069
13 lines
249 B
LLVM
13 lines
249 B
LLVM
; RUN: llvm-as < %s | llc | grep movswl
|
|
|
|
target datalayout = "e-p:64:64"
|
|
target triple = "x86_64-apple-darwin8"
|
|
|
|
|
|
define void @bar(i16 zeroext %A) {
|
|
tail call void @foo( i16 %A signext )
|
|
ret void
|
|
}
|
|
declare void @foo(i16 signext )
|
|
|