mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
abfb9e7ee2
Summary: Switch to FileCheck where possible. Adjust tests so they can be easily regenerated by update scripts. Reviewers: craig.topper, spatel, RKSimon Reviewed By: spatel Subscribers: MatzeB, qcolombet, arphaman, jfb, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D71211
18 lines
544 B
LLVM
18 lines
544 B
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc < %s -no-integrated-as | FileCheck %s
|
|
target datalayout = "e-p:32:32"
|
|
target triple = "i686-apple-darwin9"
|
|
|
|
define void @test() {
|
|
; CHECK-LABEL: test:
|
|
; CHECK: ## %bb.0:
|
|
; CHECK-NEXT: ## InlineAsm Start
|
|
; CHECK-NEXT: mov %gs:72, %eax
|
|
; CHECK-NEXT: ## InlineAsm End
|
|
; CHECK-NEXT: retl
|
|
%tmp1 = tail call i32* asm sideeffect "mov %gs:${1:P}, $0", "=r,i,~{dirflag},~{fpsr},~{flags}"( i32 72 ) ; <%struct._pthread*> [#uses=1]
|
|
ret void
|
|
}
|
|
|
|
|