[llvm] eca7b31 - Add missing -march to runline in llvm/test/MachineVerifier/test_g_ubfx_sbfx.mir

Jessica Paquette via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 24 11:23:25 PDT 2021


Author: Jessica Paquette
Date: 2021-03-24T11:23:08-07:00
New Revision: eca7b31864ed309150c1fce8971f92e9f9a52654

URL: https://github.com/llvm/llvm-project/commit/eca7b31864ed309150c1fce8971f92e9f9a52654
DIFF: https://github.com/llvm/llvm-project/commit/eca7b31864ed309150c1fce8971f92e9f9a52654.diff

LOG: Add missing -march to runline in llvm/test/MachineVerifier/test_g_ubfx_sbfx.mir

This can cause failures if built without a default target triple.

Added: 
    

Modified: 
    llvm/test/MachineVerifier/test_g_ubfx_sbfx.mir

Removed: 
    


################################################################################
diff  --git a/llvm/test/MachineVerifier/test_g_ubfx_sbfx.mir b/llvm/test/MachineVerifier/test_g_ubfx_sbfx.mir
index dbc6d52d7cfa8..6f177e1d51fa1 100644
--- a/llvm/test/MachineVerifier/test_g_ubfx_sbfx.mir
+++ b/llvm/test/MachineVerifier/test_g_ubfx_sbfx.mir
@@ -1,4 +1,4 @@
-# RUN: not --crash llc -verify-machineinstrs -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
+# RUN: not --crash llc -march=arm64 -verify-machineinstrs -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
 # REQUIRES: aarch64-registered-target
 
 name:            test


        


More information about the llvm-commits mailing list