Displaying 4 results from an estimated 4 matches for "64003c00".
Did you mean:
640000
2013 Sep 23
2
[LLVMdev] LLVM ERROR: expected relocatable expression
....word 60
.Ltmpc:
.word 40
.Ltmpd:
.word (.Ltmpa-.Ltmpb)-.Ltmpc
The GNU assembler properly handles the above.
$as -c x.s -o x.o
$readelf -x 4 x.o
Hex dump of section 'somedata':
NOTE: This section has relocations against it, but these have NOT been
applied to this dump.
0x00000000 64003c00 28000000 d.<.(...
^^^^ (Calculated properly too!)
With clang/llvm-mc
$ llvm-mc -filetype=obj x.s -o x.o
LLVM ERROR: expected relocatable expression
Looks like llvm-mc is more restrictive ?
Thanks
Shankar Easwaran
--
Qualcomm Innovation Center, Inc. is a member of Code Aur...
2013 Sep 23
0
[LLVMdev] LLVM ERROR: expected relocatable expression
...Ltmpa-.Ltmpb)-.Ltmpc
>
> The GNU assembler properly handles the above.
>
> $as -c x.s -o x.o
> $readelf -x 4 x.o
>
> Hex dump of section 'somedata':
> NOTE: This section has relocations against it, but these have NOT been
> applied to this dump.
> 0x00000000 64003c00 28000000 d.<.(...
> ^^^^ (Calculated
> properly too!)
> With clang/llvm-mc
>
> $ llvm-mc -filetype=obj x.s -o x.o
>
> LLVM ERROR: expected relocatable expression
>
> Looks like llvm-mc is more restr...
2013 Sep 22
0
[LLVMdev] LLVM ERROR: expected relocatable expression
On Sun, Sep 22, 2013 at 12:23 PM, Sid Manning <sidneym at codeaurora.org>wrote:
> On 09/20/2013 06:00 PM, Eli Friedman wrote:
>
>> On Fri, Sep 20, 2013 at 2:50 PM, Sid Manning <sidneym at codeaurora.org
>> <mailto:sidneym at codeaurora.org**>> wrote:
>>
>>
>> This example generates the following error:
>> .Ltmp3:
>>
2013 Sep 22
2
[LLVMdev] LLVM ERROR: expected relocatable expression
On 09/20/2013 06:00 PM, Eli Friedman wrote:
> On Fri, Sep 20, 2013 at 2:50 PM, Sid Manning <sidneym at codeaurora.org
> <mailto:sidneym at codeaurora.org>> wrote:
>
>
> This example generates the following error:
> .Ltmp3:
> .Ltmp5:
> .Ltmp13:
> .word (.Ltmp5-.Ltmp3)-.Ltmp13
>
> ./llvm-mc ex.s -filetype=obj
>