summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/PowerPC/align.ll
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/align.ll')
-rw-r--r--llvm/test/CodeGen/PowerPC/align.ll40
1 files changed, 12 insertions, 28 deletions
diff --git a/llvm/test/CodeGen/PowerPC/align.ll b/llvm/test/CodeGen/PowerPC/align.ll
index dac5a5101f2..5daf3da9120 100644
--- a/llvm/test/CodeGen/PowerPC/align.ll
+++ b/llvm/test/CodeGen/PowerPC/align.ll
@@ -1,6 +1,4 @@
-; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-linux-gnu | FileCheck %s -check-prefix=ELF
-; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-apple-darwin9 | FileCheck %s -check-prefix=DARWIN
-; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-apple-darwin8 | FileCheck %s -check-prefix=DARWIN8
+; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-unknown-linux-gnu | FileCheck %s
@a = global i1 true
; no alignment
@@ -9,38 +7,24 @@
; no alignment
@c = global i16 2
-;ELF: .p2align 1
-;ELF: c:
-;DARWIN: .p2align 1
-;DARWIN: _c:
+;CHECK: .p2align 1
+;CHECK: c:
@d = global i32 3
-;ELF: .p2align 2
-;ELF: d:
-;DARWIN: .p2align 2
-;DARWIN: _d:
+;CHECK: .p2align 2
+;CHECK: d:
@e = global i64 4
-;ELF: .p2align 3
-;ELF: e
-;DARWIN: .p2align 3
-;DARWIN: _e:
+;CHECK: .p2align 3
+;CHECK: e
@f = global float 5.0
-;ELF: .p2align 2
-;ELF: f:
-;DARWIN: .p2align 2
-;DARWIN: _f:
+;CHECK: .p2align 2
+;CHECK: f:
@g = global double 6.0
-;ELF: .p2align 3
-;ELF: g:
-;DARWIN: .p2align 3
-;DARWIN: _g:
+;CHECK: .p2align 3
+;CHECK: g:
@bar = common global [75 x i8] zeroinitializer, align 128
-;ELF: .comm bar,75,128
-;DARWIN: .comm _bar,75,7
-
-;; Darwin8 doesn't support aligned comm. Just miscompile this.
-; DARWIN8: .comm _bar,75 ;
+;CHECK: .comm bar,75,128
OpenPOWER on IntegriCloud