[PATCH] D56925: Do not use frame pointer by default for MSP430

Kristina Bessonova via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Jan 25 07:26:08 PST 2019


krisb added inline comments.


================
Comment at: test/CodeGen/msp430-fp-elim.c:16
+{
+	asm volatile ("calla r4");
+}
----------------
This test as it is will fail after integrated assembler will be turned on by default (see https://reviews.llvm.org/D56787).  Since `calla` instruction isn't supported yet, the assembler will report an error of 'invalid instruction mnemonic'.
So, please, choose another instruction from ones that are already supported. Or turn -integrated-as off.


Repository:
  rC Clang

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D56925/new/

https://reviews.llvm.org/D56925





More information about the cfe-commits mailing list