reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 | ; RUN: llc %s -mtriple=arm-unknown-unknown -filetype=obj -o - \ ; RUN: | llvm-objdump -t - | FileCheck %s ; RUN: llc %s -mtriple=thumb-unknown-unknown -filetype=obj -o - \ ; RUN: | llvm-objdump -t - | FileCheck %s ; Check that the symbol address does not include the ARM/Thumb instruction ; indicator bit. ; CHECK: 00000000 g F .text {{[0-9]+}} test define i32 @test() { ret i32 1 } |