1# RUN: llvm-mc -triple powerpc-unknown-unknown %s 2# RUN: llvm-mc -triple powerpc64-unknown-unknown %s 3# RUN: llvm-mc -triple powerpc64le-unknown-unknown %s 4 5# For now, the only thing we check is that the .machine directive 6# is accepted without syntax error. 7 8 .machine push 9 .machine any 10 .machine pop 11 12 .machine "push" 13 .machine "any" 14 .machine "pop" 15 16