| OLD | NEW |
| 1 ; Tests that we generate an ELF container correctly when there | 1 ; Tests that we generate an ELF container correctly when there |
| 2 ; is no data section. | 2 ; is no data section. |
| 3 | 3 |
| 4 ; For the integrated ELF writer, we can't pipe the output because we need | 4 ; For the integrated ELF writer, we can't pipe the output because we need |
| 5 ; to seek backward and patch up the file headers. So, use a temporary file. | 5 ; to seek backward and patch up the file headers. So, use a temporary file. |
| 6 ; RUN: %p2i -i %s --args -O2 --verbose none -elf-writer -o %t \ | 6 ; RUN: %p2i -i %s --args -O2 --verbose none -filetype=obj -o %t \ |
| 7 ; RUN: && llvm-readobj -file-headers -sections -section-data \ | 7 ; RUN: && llvm-readobj -file-headers -sections -section-data \ |
| 8 ; RUN: -relocations -symbols %t | FileCheck %s | 8 ; RUN: -relocations -symbols %t | FileCheck %s |
| 9 | 9 |
| 10 ; RUN: %p2i -i %s --args -O2 --verbose none \ | 10 ; RUN: %p2i -i %s --args -O2 --verbose none \ |
| 11 ; RUN: | llvm-mc -triple=i686-none-nacl -filetype=obj -o - \ | 11 ; RUN: | llvm-mc -triple=i686-none-nacl -filetype=obj -o - \ |
| 12 ; RUN: | llvm-readobj -file-headers -sections -section-data \ | 12 ; RUN: | llvm-readobj -file-headers -sections -section-data \ |
| 13 ; RUN: -relocations -symbols - | FileCheck %s | 13 ; RUN: -relocations -symbols - | FileCheck %s |
| 14 | 14 |
| 15 declare void @llvm.memcpy.p0i8.p0i8.i32(i8*, i8*, i32, i32, i1) | 15 declare void @llvm.memcpy.p0i8.p0i8.i32(i8*, i8*, i32, i32, i1) |
| 16 | 16 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 ; CHECK: Symbol { | 118 ; CHECK: Symbol { |
| 119 ; CHECK: Name: memcpy | 119 ; CHECK: Name: memcpy |
| 120 ; CHECK-NEXT: Value: 0x0 | 120 ; CHECK-NEXT: Value: 0x0 |
| 121 ; CHECK-NEXT: Size: 0 | 121 ; CHECK-NEXT: Size: 0 |
| 122 ; CHECK-NEXT: Binding: Global | 122 ; CHECK-NEXT: Binding: Global |
| 123 ; CHECK-NEXT: Type: None | 123 ; CHECK-NEXT: Type: None |
| 124 ; CHECK-NEXT: Other: 0 | 124 ; CHECK-NEXT: Other: 0 |
| 125 ; CHECK-NEXT: Section: Undefined | 125 ; CHECK-NEXT: Section: Undefined |
| 126 ; CHECK-NEXT: } | 126 ; CHECK-NEXT: } |
| 127 ; CHECK: ] | 127 ; CHECK: ] |
| OLD | NEW |