mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
6ff87595f1
Differential Revision: http://reviews.llvm.org/D18725 llvm-svn: 269413
18 lines
439 B
LLVM
18 lines
439 B
LLVM
; RUN: llc -mtriple=x86_64-unknown-unknown < %s | FileCheck %s
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Checks that interrupt handler code calls cld before calling an external
|
|
;; function.
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; CHECK: cld
|
|
; CHECK: call
|
|
|
|
define x86_intrcc void @foo(i8* %frame) {
|
|
call void @bar()
|
|
ret void
|
|
}
|
|
|
|
declare void @bar()
|
|
|