mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
c7fb4c55c4
This reverts commit rGcd5b308b828e, rGcd5b308b828e, rG8cedf0e2994c. There are issues to be investigated for polly bots and bots turning on EXPENSIVE_CHECKS.
15 lines
491 B
LLVM
15 lines
491 B
LLVM
; RUN: not llc -mtriple powerpc-ibm-aix-xcoff < %s 2>&1 | FileCheck %s
|
|
; RUN: not llc -mtriple powerpc64-ibm-aix-xcoff < %s 2>&1 | FileCheck %s
|
|
|
|
; CHECK: LLVM ERROR: INIT_TRAMPOLINE operation is not supported on AIX.
|
|
|
|
define void @create_trampoline(i8* %buffer, i8* %nval) nounwind {
|
|
entry:
|
|
call void @llvm.init.trampoline(i8* %buffer, i8* bitcast (i32 (i32)* @nested to i8*) , i8* %nval)
|
|
ret void
|
|
}
|
|
|
|
declare i32 @nested(i32);
|
|
|
|
declare void @llvm.init.trampoline(i8*, i8*, i8*) nounwind
|