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