mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-01 01:30:36 +00:00
Fix the build on non ppc machines
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18235 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7409d1c867
commit
fde839b4ff
@ -78,6 +78,11 @@ asm(
|
||||
"addi r4, r1, 44\n" // &FPRegs[0]
|
||||
"bl _PPC32CompilationCallbackC\n"
|
||||
);
|
||||
#else
|
||||
void PPC32CompilationCallback() {
|
||||
assert(0 && "This is not a power pc, you can't execute this!");
|
||||
abort();
|
||||
}
|
||||
#endif
|
||||
|
||||
extern "C" void PPC32CompilationCallbackC(unsigned *IntRegs, double *FPRegs) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user