1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

remove accidental comment.

llvm-svn: 54856
This commit is contained in:
Chris Lattner 2008-08-17 01:35:54 +00:00
parent 312d8de59b
commit fd2dd46dcd

View File

@ -76,7 +76,7 @@ public:
// Handle short strings specially, memcpy isn't very good at very short
// strings.
switch (Size) {
// case 4: OutBufCur[3] = Ptr[3]; // FALL THROUGH
case 4: OutBufCur[3] = Ptr[3]; // FALL THROUGH
case 3: OutBufCur[2] = Ptr[2]; // FALL THROUGH
case 2: OutBufCur[1] = Ptr[1]; // FALL THROUGH
case 1: OutBufCur[0] = Ptr[0]; // FALL THROUGH