Mercurial > hg > CbC > CbC_llvm
annotate test/MC/Sparc/sparc-directive-xword.s @ 120:1172e4bd9c6f
update 4.0.0
author | mir3636 |
---|---|
date | Fri, 25 Nov 2016 19:14:25 +0900 |
parents | afa8332a0e37 |
children |
rev | line source |
---|---|
77 | 1 ! RUN: not llvm-mc %s -arch=sparc -show-encoding 2>&1 | FileCheck %s --check-prefix=SPARC32 |
95 | 2 ! RUN: llvm-mc %s -triple sparc64 -show-encoding | FileCheck %s --check-prefix=SPARC64 |
3 ! RUN: llvm-mc %s -triple sparcv9 -show-encoding | FileCheck %s --check-prefix=SPARCV9 | |
77 | 4 |
5 ! SPARC32: error: unknown directive | |
6 ! SPARC32-NEXT: .xword 65536 | |
7 ! SPARC32-NEXT: ^ | |
8 | |
9 ! SPARC64: .xword 65536 | |
10 .xword 65536 | |
11 | |
95 | 12 ! SPARCV9: .xword 65536 |
13 .xword 65536 |