Fix spelling.
authorJoerg Sonnenberger <joerg@bec.de>
Mon, 5 May 2014 17:58:46 +0000 (17:58 +0000)
committerJoerg Sonnenberger <joerg@bec.de>
Mon, 5 May 2014 17:58:46 +0000 (17:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207982 91177308-0d34-0410-b5e6-96231b3b80d8

test/MC/ARM/eh-directive-save-diagnoatics.s [deleted file]
test/MC/ARM/eh-directive-save-diagnostics.s [new file with mode: 0644]

diff --git a/test/MC/ARM/eh-directive-save-diagnoatics.s b/test/MC/ARM/eh-directive-save-diagnoatics.s
deleted file mode 100644 (file)
index 0e6d740..0000000
+++ /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 (file)
index 0000000..0e6d740
--- /dev/null
@@ -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