xref: /llvm-project/llvm/test/MC/PowerPC/ppc64-localentry-error1.s (revision 1ae1dd16cf2de7f85e2eb68f975d63fbd9c20098)
1
2# RUN: not llvm-mc -triple powerpc64-unknown-unknown -filetype=obj < %s 2> %t
3# RUN: FileCheck < %t %s
4# RUN: not llvm-mc -triple powerpc64le-unknown-unknown -filetype=obj < %s 2> %t
5# RUN: FileCheck < %t %s
6
7	.globl remote_sym
8sym:
9
10# CHECK: :0: error: .localentry expression must be a power of 2
11	.localentry sym, 123
12
13# CHECK: :[[#@LINE+1]]:19: error: .localentry expression must be absolute
14	.localentry sym, remote_sym
15
16