diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2011-07-12 02:47:38 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2011-07-12 02:47:38 +0000 |
commit | 37b7fd0ab200c00ba6f28156beefb5317167c8d6 (patch) | |
tree | 31676b611ea303746dbaaf2f4ba131dd1e04cbc5 /clang/lib | |
parent | 75541d00e0b90e0c01ba129a13fcccebbf41978d (diff) | |
download | bcm5719-llvm-37b7fd0ab200c00ba6f28156beefb5317167c8d6.tar.gz bcm5719-llvm-37b7fd0ab200c00ba6f28156beefb5317167c8d6.zip |
Fix a typo!
llvm-svn: 134952
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/CodeGen/TargetInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/TargetInfo.cpp b/clang/lib/CodeGen/TargetInfo.cpp index 6d5e38daa89..bc611176ce8 100644 --- a/clang/lib/CodeGen/TargetInfo.cpp +++ b/clang/lib/CodeGen/TargetInfo.cpp @@ -1136,7 +1136,7 @@ void X86_64ABIInfo::classify(QualType Ty, uint64_t OffsetBase, // split. if (OffsetBase && OffsetBase != 64) Hi = Lo; - } else if (Size == 128 | Size == 256) { + } else if (Size == 128 || Size == 256) { // Arguments of 256-bits are split into four eightbyte chunks. The // least significant one belongs to class SSE and all the others to class // SSEUP. The original Lo and Hi design considers that types can't be |