mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
f95220dd8b
Based on the patch by David Nadlinger! llvm-svn: 179889
15 lines
320 B
LLVM
15 lines
320 B
LLVM
; RUN: llc < %s -mtriple=i386-unknown-mingw32 | FileCheck %s
|
|
|
|
; Check that a fastcall function gets correct mangling
|
|
|
|
define x86_fastcallcc void @func(i64 %X, i8 %Y, i8 %G, i16 %Z) {
|
|
; CHECK: @func@20:
|
|
ret void
|
|
}
|
|
|
|
define x86_fastcallcc i32 @"\01DoNotMangle"(i32 %a) {
|
|
; CHECK: DoNotMangle:
|
|
entry:
|
|
ret i32 %a
|
|
}
|