Mercurial > hg > CbC > CbC_llvm
annotate test/Object/ARM/symbol-addr.ll @ 77:54457678186b LLVM3.6
LLVM 3.6
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 08 Sep 2014 22:06:00 +0900 |
parents | 95c75e76d11b |
children |
rev | line source |
---|---|
0 | 1 ; RUN: llc %s -mtriple=arm-unknown-unknown -filetype=obj -o - \ |
2 ; RUN: | llvm-objdump -t - | FileCheck %s | |
3 ; RUN: llc %s -mtriple=thumb-unknown-unknown -filetype=obj -o - \ | |
4 ; RUN: | llvm-objdump -t - | FileCheck %s | |
5 | |
6 ; Check that the symbol address does not include the ARM/Thumb instruction | |
7 ; indicator bit. | |
8 ; CHECK: 00000000 g F .text {{[0-9]+}} test | |
9 | |
10 define i32 @test() { | |
11 ret i32 1 | |
12 } |