diff options
author | Eric Christopher <echristo@gmail.com> | 2013-04-03 18:31:19 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-04-03 18:31:19 +0000 |
commit | 8d67ab4f7085bbbec409344de6f6f9eee06f12b2 (patch) | |
tree | 008bb4f958f729a3931d7bc8f9174de28bc86b39 /llvm/test | |
parent | d5972ea8fc02ae9e113566fb1b22bc64ea5f2599 (diff) | |
download | bcm5719-llvm-8d67ab4f7085bbbec409344de6f6f9eee06f12b2.tar.gz bcm5719-llvm-8d67ab4f7085bbbec409344de6f6f9eee06f12b2.zip |
Implement sectionContainsSymbol for ELF.
Patch by Nico Rieck!
llvm-svn: 178677
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/Object/Mips/feature.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/test/Object/Mips/feature.test b/llvm/test/Object/Mips/feature.test index e8da6097460..340301450a5 100644 --- a/llvm/test/Object/Mips/feature.test +++ b/llvm/test/Object/Mips/feature.test @@ -2,10 +2,12 @@ RUN: llvm-objdump -disassemble -triple mips64el -mattr +mips64r2 %p/../Inputs/de RUN: | FileCheck %s CHECK: Disassembly of section .text: -CHECK: .text: +CHECK: dext: CHECK: 0: 08 00 e0 03 jr $ra CHECK: 4: 43 49 82 7c dext $2, $4, 5, 10 +CHECK: dextu: CHECK: 8: 08 00 e0 03 jr $ra CHECK: c: 83 28 82 7c dext $2, $4, 2, 6 +CHECK: dextm: CHECK: 10: 08 00 e0 03 jr $ra CHECK: 14: 43 09 82 7c dext $2, $4, 5, 2 |