mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
fix an infinite loop in Module::getEndianness, PR6684
patch by Alex Mac! llvm-svn: 99330
This commit is contained in:
parent
d97eb200cf
commit
5808510db7
@ -82,7 +82,7 @@ Module::Endianness Module::getEndianness() const {
|
||||
|
||||
while (!temp.empty()) {
|
||||
StringRef token = DataLayout;
|
||||
tie(token, temp) = getToken(DataLayout, "-");
|
||||
tie(token, temp) = getToken(temp, "-");
|
||||
|
||||
if (token[0] == 'e') {
|
||||
ret = LittleEndian;
|
||||
|
Loading…
Reference in New Issue
Block a user