Mercurial > hg > CbC > CbC_llvm
view test/MC/ELF/gen-dwarf.s @ 68:a37375f10d66
remove unnecessary comments
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 12 Feb 2014 01:06:33 +0900 |
parents | 95c75e76d11b |
children | 54457678186b |
line wrap: on
line source
// RUN: llvm-mc -g -triple i686-pc-linux-gnu %s -filetype=obj -o - | llvm-readobj -r | FileCheck %s // Test that on ELF: // 1. the debug info has a relocation to debug_abbrev and one to to debug_line. // 2. the debug_aranges has relocations to text and debug_line. .text .globl foo .type foo, @function .align 4 foo: ret .size foo, .-foo // CHECK: Relocations [ // CHECK: Section ({{[^ ]+}}) .rel.debug_info { // CHECK-NEXT: 0x6 R_386_32 .debug_abbrev 0x0 // CHECK-NEXT: 0xC R_386_32 .debug_line 0x0 // CHECK: } // CHECK-NEXT: Section ({{[^ ]+}}) .rel.debug_aranges { // CHECK-NEXT: 0x6 R_386_32 .debug_info 0x0 // CHECK-NEXT: 0x10 R_386_32 .text 0x0 // CHECK-NEXT: } // CHECK-NEXT: ]