-
Notifications
You must be signed in to change notification settings - Fork 12.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[M68k] update dissassmbly test to require atLeastM68020 for BSR32 #119758
Conversation
@llvm/pr-subscribers-backend-m68k @llvm/pr-subscribers-mc Author: None (knickish) ChangesFixes test failure reported in #117371. Full diff: https://github.com/llvm/llvm-project/pull/119758.diff 1 Files Affected:
diff --git a/llvm/test/MC/Disassembler/M68k/control.txt b/llvm/test/MC/Disassembler/M68k/control.txt
index d722dfd791fa9e..58d5629855838c 100644
--- a/llvm/test/MC/Disassembler/M68k/control.txt
+++ b/llvm/test/MC/Disassembler/M68k/control.txt
@@ -1,4 +1,4 @@
-# RUN: llvm-mc -disassemble -triple m68k %s | FileCheck %s
+# RUN: llvm-mc -disassemble -triple m68k -mcpu=M68020 %s | FileCheck %s
# CHECK: bra $0
0x60 0x00 0x00 0x00
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for the quick fix
Of course. #119142 still hasn't been approved yet, so can't hit merge myself |
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/183/builds/7456 Here is the relevant piece of the build log for the reference
|
Fixes test failure reported in #117371.
BSR32
was previously (incorrectly) allowed for CPUs <M68020, this test was missed while updating the rest to fit the new model