diff options
| author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2014-08-03 05:27:14 +0000 |
|---|---|---|
| committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2014-08-03 05:27:14 +0000 |
| commit | 9215b17eb77d233205f2babe49a800da8e9724c4 (patch) | |
| tree | 77ff2357ffbe37fcb21f6c7ef363459eecff1f7a /llvm/lib | |
| parent | a63b2579c6dabb7edae3ad38a4789659c962a7bf (diff) | |
| download | bcm5719-llvm-9215b17eb77d233205f2babe49a800da8e9724c4.tar.gz bcm5719-llvm-9215b17eb77d233205f2babe49a800da8e9724c4.zip | |
R600/SI: Fix extra whitespace in asm str
This slipped in in r214467, so something like
V_MOV_B32_e32 v0, ... is now printed with 2 spaces
between the instruction name and first operand.
llvm-svn: 214660
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/R600/SIInstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/R600/SIInstrInfo.td b/llvm/lib/Target/R600/SIInstrInfo.td index a0c00332948..91e4d0d79d0 100644 --- a/llvm/lib/Target/R600/SIInstrInfo.td +++ b/llvm/lib/Target/R600/SIInstrInfo.td @@ -442,7 +442,7 @@ class VOPProfile <list<ValueType> _ArgVT> { field dag Ins64 = getIns64<Src0RC64, Src1RC64, Src2RC64, NumSrcArgs, HasModifiers>.ret; - field string Asm32 = "_e32 "#getAsm32<NumSrcArgs>.ret; + field string Asm32 = "_e32"#getAsm32<NumSrcArgs>.ret; field string Asm64 = getAsm64<NumSrcArgs, HasModifiers>.ret; } |

