This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat copy_ctor.cpp | |
struct Foo { | |
char big[10240]; | |
}; | |
Foo fooCopy(const Foo * const in) { | |
return Foo(*in); | |
} | |
$ ./clang++ -target arm-none-eabi copy_ctor.cpp -c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rv_value.pass.o: file format elf32-littlearm | |
Disassembly of section .text: | |
00000000 <main>: | |
} | |
#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[15:00:32] ✘ jroelofs@build1-lucid-cs arm-none-eabi-lite$ cat foobar.c | |
#if defined(MACRO_OUTSIDE) | |
asm( | |
".macro RETURN cond=\n\t" | |
"bx\\cond lr\n\t" | |
".endm\n\t" | |
); | |
#endif | |
char* __attribute__((naked)) |
NewerOlder