diff options
author | Vladimir Medic <Vladimir.Medic@imgtec.com> | 2013-11-13 13:18:04 +0000 |
---|---|---|
committer | Vladimir Medic <Vladimir.Medic@imgtec.com> | 2013-11-13 13:18:04 +0000 |
commit | c0fad4d9fdb1aebe029bcb54311fad7059b1a9e5 (patch) | |
tree | 12522d994c20dd9a492b383ff71683c90a0a0b7e /test | |
parent | 1206f1968b0886ab41739aebe113dd4813f3fc46 (diff) | |
download | external_llvm-c0fad4d9fdb1aebe029bcb54311fad7059b1a9e5.zip external_llvm-c0fad4d9fdb1aebe029bcb54311fad7059b1a9e5.tar.gz external_llvm-c0fad4d9fdb1aebe029bcb54311fad7059b1a9e5.tar.bz2 |
Fix bug in .gpword directive parsing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194570 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/MC/Mips/mips_directives.s | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/MC/Mips/mips_directives.s b/test/MC/Mips/mips_directives.s index 6bd690a..44e707c 100644 --- a/test/MC/Mips/mips_directives.s +++ b/test/MC/Mips/mips_directives.s @@ -19,10 +19,11 @@ $BB0_2: .set noat $JTI0_0: .gpword ($BB0_2) + .word 0x77fffffc # CHECK: $JTI0_0: # CHECK: .gpword ($BB0_2) -# CHECK-NEXT: .4byte 2013265916 +# CHECK: .4byte 2013265916 .set at=$12 .set macro # CHECK: b 1332 # encoding: [0x10,0x00,0x01,0x4d] |