| OLD | NEW |
| 1 ; Test that functions are aligned to the NaCl bundle alignment. | 1 ; Test that functions are aligned to the NaCl bundle alignment. |
| 2 ; We could be smarter and only do this for indirect call targets | 2 ; We could be smarter and only do this for indirect call targets |
| 3 ; but typically you want to align functions anyway. | 3 ; but typically you want to align functions anyway. |
| 4 ; Also, we are currently using hlts for non-executable padding. | 4 ; Also, we are currently using hlts for non-executable padding. |
| 5 | 5 |
| 6 ; RUN: %p2i -i %s --args -O2 --verbose none \ | 6 ; RUN: %p2i --assemble --disassemble -i %s --args -O2 --verbose none \ |
| 7 ; RUN: | llvm-mc -triple=i686-none-nacl -filetype=obj \ | 7 ; RUN: | FileCheck %s |
| 8 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s | |
| 9 | 8 |
| 10 define void @foo() { | 9 define void @foo() { |
| 11 ret void | 10 ret void |
| 12 } | 11 } |
| 13 ; CHECK-LABEL: foo | 12 ; CHECK-LABEL: foo |
| 14 ; CHECK-NEXT: 0: {{.*}} ret | 13 ; CHECK-NEXT: 0: {{.*}} ret |
| 15 ; CHECK-NEXT: 1: {{.*}} hlt | 14 ; CHECK-NEXT: 1: {{.*}} hlt |
| 16 | 15 |
| 17 define void @bar() { | 16 define void @bar() { |
| 18 ret void | 17 ret void |
| 19 } | 18 } |
| 20 ; CHECK-LABEL: bar | 19 ; CHECK-LABEL: bar |
| 21 ; CHECK-NEXT: 20: {{.*}} ret | 20 ; CHECK-NEXT: 20: {{.*}} ret |
| OLD | NEW |