diff options
author | Dmitry Polukhin <dmitry.polukhin@gmail.com> | 2016-04-07 13:18:43 +0000 |
---|---|---|
committer | Dmitry Polukhin <dmitry.polukhin@gmail.com> | 2016-04-07 13:18:43 +0000 |
commit | af16b958c0a0746f3b3fc354443a6b16ff83a7ee (patch) | |
tree | d1c4dfd6decc41302a41751c3e8524026815ab18 | |
parent | 2af33e3d3ff1cd0535602cf50b06539949a2b16b (diff) | |
download | bcm5719-llvm-af16b958c0a0746f3b3fc354443a6b16ff83a7ee.tar.gz bcm5719-llvm-af16b958c0a0746f3b3fc354443a6b16ff83a7ee.zip |
Fix test/Assembler/ifunc-asm.ll test on hexagon-elf bots
Temporary disable llc test, it seems that such test should be in some
other directory.
llvm-svn: 265669
-rw-r--r-- | llvm/test/Assembler/ifunc-asm.ll | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/test/Assembler/ifunc-asm.ll b/llvm/test/Assembler/ifunc-asm.ll index 7c30a35613a..8060c2e9d2e 100644 --- a/llvm/test/Assembler/ifunc-asm.ll +++ b/llvm/test/Assembler/ifunc-asm.ll @@ -1,11 +1,9 @@ ; RUN: llvm-as < %s | llvm-dis | FileCheck %s --check-prefix=CHECK-LLVM -; RUN: llvm-as < %s -o - | llc -filetype=asm | FileCheck %s --check-prefix=CHECK-ASM target triple = "x86_64-unknown-linux-gnu" @foo = ifunc i32 (i32), i64 ()* @foo_ifunc ; CHECK-LLVM: @foo = ifunc i32 (i32), i64 ()* @foo_ifunc -; CHECK-ASM: .type foo,@gnu_indirect_function define internal i64 @foo_ifunc() { entry: |