[llvm-commits] CVS: llvm-www/DevMtgMay2007.html

2007-05-25 Thread Chris Lattner


Changes in directory llvm-www:

DevMtgMay2007.html updated: 1.149 -> 1.150
---
Log message:

two new people


---
Diffs of the changes:  (+4 -2)

 DevMtgMay2007.html |6 --
 1 files changed, 4 insertions(+), 2 deletions(-)


Index: llvm-www/DevMtgMay2007.html
diff -u llvm-www/DevMtgMay2007.html:1.149 llvm-www/DevMtgMay2007.html:1.150
--- llvm-www/DevMtgMay2007.html:1.149   Thu May 24 18:55:36 2007
+++ llvm-www/DevMtgMay2007.html Fri May 25 08:54:31 2007
@@ -289,6 +289,7 @@
 Mike EnglerAdobe Systems Incorporated.
 Rafael EspíndolaGoogle
 Tomas EvensenWind River
+Samuel FigueroaApple Inc.
 Han GaoAdobe Systems Incorporated.
 Dan GohmanCray Inc.
 Lang HamesUniversity of Sydney
@@ -328,6 +329,7 @@
 Raju SubbianWind River
 Mark ThomasAerospace
 Sarah ThompsonNASA, Ames Research Center
+Andrew TrickHP
 Bill WendlingApple Inc.
 Marcel WeiherMetaObject
 James WeisnerAscenium Corp.
@@ -337,7 +339,7 @@
   
 
   
-  Total confirmed: 49
+  Total confirmed: 51
   
 Unconfirmed Attendees
 NameOrganization
@@ -355,6 +357,6 @@
   src="http://jigsaw.w3.org/css-validator/images/vcss"; alt="Valid CSS!">
   http://validator.w3.org/check/referer";>http://www.w3.org/Icons/valid-html401"; alt="Valid HTML 4.01!">
-Last modified: $Date: 2007/05/24 23:55:36 $
+Last modified: $Date: 2007/05/25 13:54:31 $
 
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm/lib/CodeGen/IntrinsicLowering.cpp

2007-05-25 Thread Zhou Sheng


Changes in directory llvm/lib/CodeGen:

IntrinsicLowering.cpp updated: 1.84 -> 1.85
---
Log message:

Correct the logic in LowerPartSet which cleared the bits from 0 to low-1.


---
Diffs of the changes:  (+7 -5)

 IntrinsicLowering.cpp |   12 +++-
 1 files changed, 7 insertions(+), 5 deletions(-)


Index: llvm/lib/CodeGen/IntrinsicLowering.cpp
diff -u llvm/lib/CodeGen/IntrinsicLowering.cpp:1.84 
llvm/lib/CodeGen/IntrinsicLowering.cpp:1.85
--- llvm/lib/CodeGen/IntrinsicLowering.cpp:1.84 Mon May 14 21:26:52 2007
+++ llvm/lib/CodeGen/IntrinsicLowering.cpp  Fri May 25 22:43:13 2007
@@ -557,11 +557,13 @@
 Rplcmnt->addIncoming(NewRes, reverse);
 Rplcmnt->addIncoming(Rep4, small);
 Value* t0   = CastInst::createIntegerCast(NumBits,ValTy,false,"",result);
-Value* t1   = BinaryOperator::createShl(ValMask, t0, "", result);
-Value* t2   = BinaryOperator::createShl(t1, Lo, "", result);
-Value* t3   = BinaryOperator::createAnd(t2, Val, "", result);
-Value* t4   = BinaryOperator::createShl(Rplcmnt, Lo, "", result);
-Value* Rslt = BinaryOperator::createOr(t3, t4, "part_set", result);
+Value* t1   = BinaryOperator::createShl(ValMask, Lo, "", result);
+Value* t2   = BinaryOperator::createNot(t1, "", result);
+Value* t3   = BinaryOperator::createShl(t1, t0, "", result);
+Value* t4   = BinaryOperator::createOr(t2, t3, "", result);
+Value* t5   = BinaryOperator::createAnd(t4, Val, "", result);
+Value* t6   = BinaryOperator::createShl(Rplcmnt, Lo, "", result);
+Value* Rslt = BinaryOperator::createOr(t5, t6, "part_set", result);
 new ReturnInst(Rslt, result);
   }
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


[llvm-commits] CVS: llvm-www/DevMtgMay2007.html

2007-05-25 Thread Chris Lattner


Changes in directory llvm-www:

DevMtgMay2007.html updated: 1.150 -> 1.151
---
Log message:

Correct the topic of steve's talk, now that lies and deception are no longer
needed ;-)


---
Diffs of the changes:  (+5 -2)

 DevMtgMay2007.html |7 +--
 1 files changed, 5 insertions(+), 2 deletions(-)


Index: llvm-www/DevMtgMay2007.html
diff -u llvm-www/DevMtgMay2007.html:1.150 llvm-www/DevMtgMay2007.html:1.151
--- llvm-www/DevMtgMay2007.html:1.150   Fri May 25 08:54:31 2007
+++ llvm-www/DevMtgMay2007.html Sat May 26 01:21:08 2007
@@ -145,7 +145,10 @@
  architecture can enable.
 
 14:1014:40Steve Naroff
-  Objective-C. Improvements to the Objective-C front end.
+  New LLVM C Front-end. This talk describes a new from-scratch 
+ C frontend (which is aiming to support Objective C and C++ someday)
+ for LLVM, built as a native part of the LLVM system and in the LLVM
+ design style.
 
 Break14:4015:30Everyone
   Inter-session afternoon break (yes, napping's allowed at this one).
@@ -357,6 +360,6 @@
   src="http://jigsaw.w3.org/css-validator/images/vcss"; alt="Valid CSS!">
   http://validator.w3.org/check/referer";>http://www.w3.org/Icons/valid-html401"; alt="Valid HTML 4.01!">
-Last modified: $Date: 2007/05/25 13:54:31 $
+Last modified: $Date: 2007/05/26 06:21:08 $
 
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits