From: Joerg Sonnenberger Date: Mon, 5 May 2014 17:58:46 +0000 (+0000) Subject: Fix spelling. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b85d6905b5284aa259d398889771930a5b1db2c0;p=oota-llvm.git Fix spelling. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207982 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/MC/ARM/eh-directive-save-diagnoatics.s b/test/MC/ARM/eh-directive-save-diagnoatics.s deleted file mode 100644 index 0e6d7404a3a..00000000000 --- a/test/MC/ARM/eh-directive-save-diagnoatics.s +++ /dev/null @@ -1,41 +0,0 @@ -@ RUN: not llvm-mc -triple=armv7-unknown-linux-gnueabi < %s 2> %t -@ RUN: FileCheck --check-prefix=CHECK < %t %s - -@ Check the diagnostics for .save directive - -@ .save directive should always come after .fnstart directive and -@ before .handlerdata directive. - - .syntax unified - .text - -@------------------------------------------------------------------------------- -@ TEST1: .save before .fnstart -@------------------------------------------------------------------------------- - .globl func1 - .align 2 - .type func1,%function - .save {r4, r5, r6, r7} -@ CHECK: error: .fnstart must precede .save or .vsave directives -@ CHECK: .save {r4, r5, r6, r7} -@ CHECK: ^ - .fnstart -func1: - .fnend - - - -@------------------------------------------------------------------------------- -@ TEST2: .save after .handlerdata -@------------------------------------------------------------------------------- - .globl func2 - .align 2 - .type func2,%function - .fnstart -func2: - .handlerdata - .save {r4, r5, r6, r7} -@ CHECK: error: .save or .vsave must precede .handlerdata directive -@ CHECK: .save {r4, r5, r6, r7} -@ CHECK: ^ - .fnend diff --git a/test/MC/ARM/eh-directive-save-diagnostics.s b/test/MC/ARM/eh-directive-save-diagnostics.s new file mode 100644 index 00000000000..0e6d7404a3a --- /dev/null +++ b/test/MC/ARM/eh-directive-save-diagnostics.s @@ -0,0 +1,41 @@ +@ RUN: not llvm-mc -triple=armv7-unknown-linux-gnueabi < %s 2> %t +@ RUN: FileCheck --check-prefix=CHECK < %t %s + +@ Check the diagnostics for .save directive + +@ .save directive should always come after .fnstart directive and +@ before .handlerdata directive. + + .syntax unified + .text + +@------------------------------------------------------------------------------- +@ TEST1: .save before .fnstart +@------------------------------------------------------------------------------- + .globl func1 + .align 2 + .type func1,%function + .save {r4, r5, r6, r7} +@ CHECK: error: .fnstart must precede .save or .vsave directives +@ CHECK: .save {r4, r5, r6, r7} +@ CHECK: ^ + .fnstart +func1: + .fnend + + + +@------------------------------------------------------------------------------- +@ TEST2: .save after .handlerdata +@------------------------------------------------------------------------------- + .globl func2 + .align 2 + .type func2,%function + .fnstart +func2: + .handlerdata + .save {r4, r5, r6, r7} +@ CHECK: error: .save or .vsave must precede .handlerdata directive +@ CHECK: .save {r4, r5, r6, r7} +@ CHECK: ^ + .fnend