Mercurial > hg > CbC > CbC_llvm
view test/MC/Mips/micromips-label-test-sections.s @ 111:3e4d254d74d9
resolve some warnings
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 02 Feb 2016 19:38:53 +0900 |
parents | 60c9769439b8 |
children | 1172e4bd9c6f |
line wrap: on
line source
# RUN: llvm-mc %s -triple=mipsel-unknown-linux -mcpu=mips32r2 \ # RUN: -mattr=+micromips -filetype=obj -o - | llvm-readobj -t | FileCheck %s .text .set micromips f: nop g: .section .text h: nop # CHECK: Symbols [ # CHECK: Symbol { # CHECK: Name: f # CHECK: Binding: Local # CHECK: Type: None # CHECK: Other: 128 # CHECK: Section: .text # CHECK: } # CHECK: Symbol { # CHECK: Name: g # CHECK: Binding: Local # CHECK: Type: None # CHECK: Other: 0 # CHECK: Section: .text # CHECK: } # CHECK: Symbol { # CHECK: Name: h # CHECK: Binding: Local # CHECK: Type: None # CHECK: Other: 128 # CHECK: Section: .text # CHECK: } # CHECK: ]