xref: /llvm-project/llvm/test/CodeGen/PowerPC/data-align.ll (revision a13ec9cd54deba3a6779ce1114503cf86a3f8658)
1*a13ec9cdSLei Huang; RUN: llc < %s -mtriple=powerpc-unknown-linux | FileCheck %s
2*a13ec9cdSLei Huang; RUN: llc < %s -mtriple=powerpc64-unknown-linux | FileCheck %s
3*a13ec9cdSLei Huang; RUN: llc < %s -mtriple=powerpc64le-unknown-linux | FileCheck %s
4*a13ec9cdSLei Huang
5*a13ec9cdSLei Huang; CHECK:      .set .Li8,
6*a13ec9cdSLei Huang; CHECK-NEXT:  .size	.Li8, 1
7*a13ec9cdSLei Huang@i8 = private constant i8 42
8*a13ec9cdSLei Huang
9*a13ec9cdSLei Huang; CHECK:      .set .Li16,
10*a13ec9cdSLei Huang; CHECK-NEXT: .size	.Li16, 2
11*a13ec9cdSLei Huang@i16 = private constant i16 42
12*a13ec9cdSLei Huang
13*a13ec9cdSLei Huang; CHECK:      .set .Li32,
14*a13ec9cdSLei Huang; CHECK-NEXT: .size	.Li32, 4
15*a13ec9cdSLei Huang@i32 = private constant i32 42
16*a13ec9cdSLei Huang
17*a13ec9cdSLei Huang; CHECK:      .set .Li64,
18*a13ec9cdSLei Huang; CHECK-NEXT: .size	.Li64, 8
19*a13ec9cdSLei Huang@i64 = private constant i64 42
20*a13ec9cdSLei Huang
21*a13ec9cdSLei Huang; CHECK:        .set .Li128,
22*a13ec9cdSLei Huang; CHECK-NEXT:	.size	.Li128, 16
23*a13ec9cdSLei Huang@i128 = private constant i128 42
24*a13ec9cdSLei Huang
25