diff options
| author | Douglas Katzman <dougk@google.com> | 2016-03-28 14:00:11 +0000 |
|---|---|---|
| committer | Douglas Katzman <dougk@google.com> | 2016-03-28 14:00:11 +0000 |
| commit | d0c11cf7adb0bd2d9fdaca5eba50cd637c8f5ebc (patch) | |
| tree | 922ef1b9f58bfaa36489e0da3a0d9f2da26ae653 /llvm/test | |
| parent | fcef3e46172bdb8ef0d9e9d08bdd9bf886c16d3d (diff) | |
| download | bcm5719-llvm-d0c11cf7adb0bd2d9fdaca5eba50cd637c8f5ebc.tar.gz bcm5719-llvm-d0c11cf7adb0bd2d9fdaca5eba50cd637c8f5ebc.zip | |
Sparc: silently ignore .proc assembler directive
Differential Revision: http://reviews.llvm.org/D18463
llvm-svn: 264579
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/MC/Sparc/sparc-directives.s | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/test/MC/Sparc/sparc-directives.s b/llvm/test/MC/Sparc/sparc-directives.s index 9185e4bc9b2..d804c1afe9b 100644 --- a/llvm/test/MC/Sparc/sparc-directives.s +++ b/llvm/test/MC/Sparc/sparc-directives.s @@ -1,6 +1,10 @@ ! RUN: llvm-mc %s -arch=sparc -show-encoding | FileCheck %s --check-prefix=SPARC32 ! RUN: llvm-mc %s -arch=sparcv9 -show-encoding | FileCheck %s --check-prefix=SPARC64 + ! '.proc' is documented to do nothing in the binutils assembler. + ! so it should do nothing for clang either, i.e. not be an error. + .proc 1 + ! SPARC32: .byte 24 ! SPARC64: .byte 24 .byte 24 |

