mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 03:55:48 -04:00

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
12 lines
496 B
LLVM
12 lines
496 B
LLVM
; RUN: llc < %s -mtriple=i686-- | FileCheck %s --check-prefix=i686
|
|
; RUN: llc < %s -mtriple=i386-apple-darwin10 | FileCheck %s --check-prefix=DARWIN
|
|
; RUN: llc < %s -mtriple=i386-apple-darwin9 | FileCheck %s --check-prefix=DARWIN
|
|
; RUN: llc < %s -mtriple=i386-apple-darwin8 | FileCheck %s --check-prefix=DARWIN8
|
|
|
|
; i686: array,16512
|
|
; DARWIN8: array,16512
|
|
; DARWIN: array,16512,7
|
|
|
|
; Darwin 9+ should get alignment on common symbols.
|
|
@array = common global [4128 x i32] zeroinitializer, align 128
|