Skip to content
  1. Sep 12, 2007
    • Anton Korobeynikov's avatar
      Fix date :) · 9811eb3d
      Anton Korobeynikov authored
      llvm-svn: 41870
      9811eb3d
    • Anton Korobeynikov's avatar
      Testcase for recent pragma pack stuff · 38f9e2a4
      Anton Korobeynikov authored
      llvm-svn: 41869
      38f9e2a4
    • Ted Kremenek's avatar
      Added static method "CFG::hasImplicitControlFlow". · 3a5aa768
      Ted Kremenek authored
      This method is used to determine if an expression contains implicit
      control-flow, and thus appears in a distinct statement slot in the CFG.
      
      For example:
      
        (1) x = ... ? ... ? ...
      
        logically becomes:
      
        (1) ... ? ... : ...  (a unique statement slot for the ternary ?)
        (2) x = [E1]         (where E1 is actually the ConditionalOperator*)
      
      A client of the CFG, when walking the statement at (2), will encounter
      E1.  In this case, hasImplicitControlFlow(E1) == true, and the client
      will know that the expression E1 is explicitly placed into its own statement
      slot to capture the implicit control-flow it has.
      
      llvm-svn: 41868
      3a5aa768
  2. Sep 11, 2007
Loading