mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
7073515c86
This should fix alot of problems we saw so far, e.g. PRs 5851 & 2936 llvm-svn: 95980
10 lines
222 B
LLVM
10 lines
222 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
|
|
}
|
|
|