diff options
| author | Jim Grosbach <grosbach@apple.com> | 2011-08-22 23:00:19 +0000 | 
|---|---|---|
| committer | Jim Grosbach <grosbach@apple.com> | 2011-08-22 23:00:19 +0000 | 
| commit | 0869b900cca6f6f4c5b2726545c755ac72027b43 (patch) | |
| tree | 12aa3dc5df870be40f0c405f914dfb27f103b14a | |
| parent | 9dc808e74db384ab9a5e555af19810852d82ff06 (diff) | |
| download | bcm5719-llvm-0869b900cca6f6f4c5b2726545c755ac72027b43.tar.gz bcm5719-llvm-0869b900cca6f6f4c5b2726545c755ac72027b43.zip  | |
Thumb assembly parsing and encoding for POP.
llvm-svn: 138286
| -rw-r--r-- | llvm/test/MC/ARM/basic-thumb-instructions.s | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/test/MC/ARM/basic-thumb-instructions.s b/llvm/test/MC/ARM/basic-thumb-instructions.s index a3bb3175367..06a9dfed3d3 100644 --- a/llvm/test/MC/ARM/basic-thumb-instructions.s +++ b/llvm/test/MC/ARM/basic-thumb-instructions.s @@ -363,3 +363,11 @@ _func:          orrs  r3, r4  @ CHECK-ERRORS: 	orrs	r3, r4                  @ encoding: [0x23,0x43] + + +@------------------------------------------------------------------------------ +@ POP +@------------------------------------------------------------------------------ +        pop {r2, r3, r6} + +@ CHECK: pop	{r2, r3, r6}            @ encoding: [0x4c,0xbc]  | 

