[llvm] r313281 - [bpf] Fix test to always use little endian.

Simon Dardis via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 14 10:55:50 PDT 2017


Author: sdardis
Date: Thu Sep 14 10:55:50 2017
New Revision: 313281

URL: http://llvm.org/viewvc/llvm-project?rev=313281&view=rev
Log:
[bpf] Fix test to always use little endian.

r313055 broke the big endian buildbots as the CHECK lines contained little
endian data but -triple bpf uses the host endian.

Modified:
    llvm/trunk/test/MC/BPF/insn-unit.s

Modified: llvm/trunk/test/MC/BPF/insn-unit.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/BPF/insn-unit.s?rev=313281&r1=313280&r2=313281&view=diff
==============================================================================
--- llvm/trunk/test/MC/BPF/insn-unit.s (original)
+++ llvm/trunk/test/MC/BPF/insn-unit.s Thu Sep 14 10:55:50 2017
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -triple bpf -filetype=obj -o %t %s
+# RUN: llvm-mc -triple bpfel -filetype=obj -o %t %s
 # RUN: llvm-objdump -d -r %t | FileCheck %s
 
 // ======== BPF_LD Class ========




More information about the llvm-commits mailing list