diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-12-06 19:08:48 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-12-06 19:08:48 +0000 |
commit | 0f30fec0bdcd45e4f8251c2c745332c1971bb874 (patch) | |
tree | ede73f241f9f5490fcf326114d77e1da3a9de7e9 /llvm/lib/Target/PowerPC/PPCAsmBackend.cpp | |
parent | 6125206e80ac20c9a1071d996db247c60b638e15 (diff) | |
download | bcm5719-llvm-0f30fec0bdcd45e4f8251c2c745332c1971bb874.tar.gz bcm5719-llvm-0f30fec0bdcd45e4f8251c2c745332c1971bb874.zip |
Remove the instruction fragment to data fragment lowering since it was causing
freed data to be read. I will open a bug to track it being reenabled.
llvm-svn: 121028
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCAsmBackend.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCAsmBackend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCAsmBackend.cpp b/llvm/lib/Target/PowerPC/PPCAsmBackend.cpp index de0ee4ebe9c..29598adfd43 100644 --- a/llvm/lib/Target/PowerPC/PPCAsmBackend.cpp +++ b/llvm/lib/Target/PowerPC/PPCAsmBackend.cpp @@ -64,7 +64,7 @@ namespace { return Format; } - void ApplyFixup(const MCFixup &Fixup, MCDataFragment &DF, + void ApplyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize, uint64_t Value) const { assert(0 && "UNIMP"); } |