Logically dead code has been removed.Because width will always be less than HOST_BITS...
authorNibha Sharma <nibha.sharma@samsung.com>
Tue, 16 Dec 2014 11:08:31 +0000 (20:08 +0900)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Tue, 16 Dec 2014 11:10:25 +0000 (20:10 +0900)
Reviewers: singh.amitesh, seoz, cedric

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D1506

src/bin/edje/epp/cppexp.c

index 79d6f3f..44a3a81 100644 (file)
@@ -381,10 +381,7 @@ cpp_lex(struct operation *op, cpp_reader * pfile)
                /* Merge character into result; ignore excess chars.  */
                if (num_chars < max_chars + 1)
                  {
-                    if (width < HOST_BITS_PER_INT)
-                       result = (result << width) | (c & ((1 << width) - 1));
-                    else
-                       result = c;
+                     result = (result << width) | (c & ((1 << width) - 1));
 #ifdef MULTIBYTE_CHARS
                     token_buffer[num_chars - 1] = c;
 #endif