[PowerPC] Support .llong and fix .word
[oota-llvm.git] / test / Object / ARM / symbol-addr.ll
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 }