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
22 lines
415 B
LLVM
22 lines
415 B
LLVM
; RUN: llc < %s -mtriple=i686-pc-linux-gnu | FileCheck %s
|
|
|
|
; These static initializers are too big to hand off to assemblers
|
|
; as monolithic blobs.
|
|
|
|
; CHECK: -1
|
|
; CHECK-NEXT: -1
|
|
; CHECK: -1
|
|
; CHECK-NEXT: -1
|
|
; CHECK-NEXT: -1
|
|
; CHECK-NEXT: -1
|
|
; CHECK: -1
|
|
; CHECK-NEXT: -1
|
|
; CHECK-NEXT: -1
|
|
; CHECK-NEXT: -1
|
|
; CHECK-NEXT: -1
|
|
; CHECK-NEXT: -1
|
|
; CHECK-NEXT: -1
|
|
@x = global i128 -1
|
|
@y = global i256 -1
|
|
@z = global i512 -1
|